Importing Now Up-to-Date into iCal (again)

Hi -- I tried some of the solutions posted, but none worked. (For instance, Entourage gives me a message that it cannot import because a Now Up-to-Date file can't be found.) I've dead-ended. Any new solutions, since the last ones wre posted? Thanks!

I just did a full migration from Now Up-to-Date to iCal and was successful using a tip obtained elsewhere. The key is to pass the data through Excel and Palm Desktop. Now can't export vCal yet and iCal won't import tab delimited text. However, Palm Desktop can import tab-delimted text and export vCal.
I don't think you can successfuly create multiple iCal calendars from the Now categories going through Palm Desktop; I didn't try that. To make sure it worked out, I did it using multiple export/imports doing one Now category at a time by passing it through Excel. Here's a summary of the steps:
1. Export your date rage from Now in tab-delimited format.
2. Open the export file in Excel, sort by category.
3. Extract all entries for each category into separate workbooks, save each as tab-delimited text file format.
4. Open Palm Desktop and create a new calendar for the category (e.g business, personal, special events, etc.) Save it in a temp place like your desktop.
5. Import the text file to the new Palm Desktop calendar
6. Export from Palm Desktop to a vCal file
7. Create a new calendar in iCal for the category to be imported
8. Import the vCal file into that calendar.
Repeat steps 4-8 for each Now category.
There were some anomolies I couldn't explain (like some single-day all-day events becoming two-day events in iCal), but I just cleaned those up manually.
Repeating events in the Now Calendar will become multiple single events in iCal. Also, if you have any commas in titles or notes, the process of passing through Excell wil put " " around those entries in iCal. If this bothers you, you could pass the saved Excel text files (from step 3) through a text editor (Text Wrangler works best, TextEdit should do it also) to delete the quotes if you want.
  Mac OS X (10.4.8)  
MacBook Pro   Mac OS X (10.4.8)  

Similar Messages

  • Importing Now Up to Date to iCal

    For years I've used a calendar application called Now Up to Date, which also has a companion contact manager. I've resisted converting to iCal because I have so much information on the calendar, including many events that repeat not just from week to week but year to year. However, I think the time has come. Is there a way to import my calendar date to iCal? There are some archived questions on this topic from several years ago, but they were not helpful. I've heard of a free utility called NUD to iCal that claims to do this but would like to know if anyone has tried this and, if so, how well it worked. As a last resort, I guess I could undertake the laborious process of manually re-entering all of my calendar data. Either way, should I do this while I'm still using Snow Leopard or wait until I upgrade to Lion?

    No responses

  • Importing Now Up To Date Calendar into iCal

    I have been using NUTD for ten years. It is now starting to crash often with the latest OS software. So I would like to import my entire NUTD calendar into iCal. However, I cannot figure out how to do this. I have looked at discussions on the subject, but they all seem to be several years old. Any new ideas on doing this? I have a Bed and Breakfast and need the past ten years calendar info, plus the reservation info that goes out three year from now. So I need to import 13 years worth of calendar data.

    I just did a full migration from Now Up-to-Date to iCal and was successful using a tip obtained elsewhere. The key is to pass the data through Excel and Palm Desktop. Now can't export vCal yet and iCal won't import tab delimited text. However, Palm Desktop can import tab-delimted text and export vCal.
    I don't think you can successfuly create multiple iCal calendars from the Now categories going through Palm Desktop; I didn't try that. To make sure it worked out, I did it using multiple export/imports doing one Now category at a time by passing it through Excel. Here's a summary of the steps:
    1. Export your date rage from Now in tab-delimited format.
    2. Open the export file in Excel, sort by category.
    3. Extract all entries for each category into separate workbooks, save each as tab-delimited text file format.
    4. Open Palm Desktop and create a new calendar for the category (e.g business, personal, special events, etc.) Save it in a temp place like your desktop.
    5. Import the text file to the new Palm Desktop calendar
    6. Export from Palm Desktop to a vCal file
    7. Create a new calendar in iCal for the category to be imported
    8. Import the vCal file into that calendar.
    Repeat steps 4-8 for each Now category.
    There were some anomolies I couldn't explain (like some single-day all-day events becoming two-day events in iCal), but I just cleaned those up manually.
    Repeating events in the Now Calendar will become multiple single events in iCal. Also, if you have any commas in titles or notes, the process of passing through Excell wil put " " around those entries in iCal. If this bothers you, you could pass the saved Excel text files (from step 3) through a text editor (Text Wrangler works best, TextEdit should do it also) to delete the quotes if you want.
      Mac OS X (10.4.8)  
    MacBook Pro   Mac OS X (10.4.8)  

  • Writing a stored procedure to import SQL Server table data into a Oracle table

    Hello,
    As a new DBA I have been tasked with writing a stored procedure to import SQL Server table data into an Oracle table. I have been given many suggestions on how to do it from SQL Server but I I just need to write a stored procedure to run it from the Oracle side. Suggestions/guidance on where to start would be greatly appreciated! Thank you!
    I started to write it based on what I have but I know this is not correct :/
    # Here is the select statement for the data source in SQL Server...
    SELECT COMPANY
    ,CUSTOMER
    ,TRANS_TYPE
    ,INVOICE
    ,TRANS_DATE
    ,STATUS
    ,TRAN_AMT
    ,CREDIT_AMT
    ,APPLD_AMT
    ,ADJ_AMT
    ,TRANS_USER1
    ,PROCESS_LEVEL
    ,DESCRIPTION
    ,DUE_DATE
    ,OUR_DATE
    ,OUR_TIME
    ,PROCESS_FLAG
    ,ERROR_DESCRIPTION
      FROM data_source_table_name
    #It loads data into the table in Oracle....   
    Insert into oracle_destination_table_name (
    COMPANY,
    CUSTOMER,
    TRANS_TYPE,
    INVOICE,
    TRANS_DATE,
    STATUS,
    TRANS_AMT,
    CREDIT_AMT,
    APPLD_AMT,
    ADJ_AMT,
    TRANS_USER1,
    PROCESS_LEVEL,
    DESCRIPTION,
    DUE_DATE,
    OUR_DATE,
    OUR_TIME,
    PROCESS_FLAG,
    ERROR_DESCRIPTION)
    END;

    CREATE TABLE statements would have been better as MS-SQL and Oracle don't have the same data types.
    OUR_DATE, OUR_TIME will (most likely) be ONE column in Oracle.
    DATABASE LINK
    Personally, I'd just load the data over a database link:
    insert into oracle_destination_table_name ( <column list> )
    select ... <transform data here>
    from data_source_table@mssql_db_link
    As far as creating the database link from Oracle to MS-SQL ... that is for somebody else to answer.
    (most likely you'll need to use an ODBC driver)
    EXTERNAL TABLE
    If the data from MS-SQL is in a CSV file, just use and external table.
    same concept:
    insert into oracle_destination_table_name ( <column list> )
    select ... <transform data here>
    from data_source_external_table
    MK

  • Converting/Importing Now  Up To Date files to iCal

    Is there a way to import all my Now Up To Date info into iCal?

    Brad,
    Since you used the word "convert" it implies to me that you are moving from the windows version.
    If that is true, you may find some help at Now Software Support.
    Now Up-to-Date and Contact FAQ Search
    Technical Support Archive for Frequently Asked Questions (FAQ's)
    ;~)

  • Publish dates into iCal from Numbers

    I am trying to publish dates from a chart in Numbers to iCal or Outlook calendar. Is this something that can be done?

    Solved, I think! What you need to do is log on to your icloud account at www.icloud.com, go to the calendar screen, click the gearwheel and choose New Calendar. Create a calendar here (ie up on the iCloud) with the name you want for your imported calendar data. Then switch to iCal - you may have to quit and relaunch for the new iCloud calendar to appear (or it will probably do so automatically if you wait long enough) then import the data using File->Import->Import... When you get to the step where it asks which calendar you want to import the data into, choose the new iCloud calendar you've just created. Job done!
    To be complete in my answer, I don't think you can exactly do what you want to do, at least not at present. There doesn't seem to be any way to publish a calendar to iCloud after the first time you set up iCloud on your Mac when it exports any calendar data that is on the Mac at that time. I suppose that Apple feel that the way I have described works by exporting from one calendar and importing into another, so no need to provide a way of doing it directly.

  • How to import Tiger Address book data into Leopard?

    How do I import the Address book data I had in Tiger, into Leopard. I backed up all my applications and the Application Support folder before I upgraded to Leopard but I can't find a way of importing the old data into the new program. I tried just copying the contents of the Address Book subfolder of Application Support but the new Leopard folder has completely different files in it....??
    Thanks

    Like all user preferences they are in /Home/Library/Preferences/ folder.
    Here's some additional info:
    Folders You Can Move to Your new Mac
    From the Home folder copy the contents of Documents, Movies, Music, Pictures, and Sites.
    In your /Home/Library/ folder:
    /Home/Library/Application Support/AddressBook (copy the whole folder)
    /Home/Library/Application Support/iCal (copy the whole folder)
    Also in /Home/Library/Application Support (copy whatever else you need including folders for any third-party applications)
    /Home/Library/Keychains (copy the whole folder)
    /Home/Library/Mail (copy the whole folder)
    /Home/Library/Preferences/com.apple.mail.plist (* This is a very important file which contains all email account settings and general mail preferences.)
    /Home/Library/Preferences/ copy any preferences needed for third-party applications
    /Home /Library/iTunes (copy the whole folder)
    /Home /Library/Safari (copy the whole folder)
    If you want cookies:
    /Home/Library/Cookies/Cookies.plist
    /Home/Library/Application Support/WebFoundation/HTTPCookies.plist
    For Entourage users:
    Entourage is in /Home/Documents/Microsoft User Data
    Also in /Home/Library/Preferences/Microsoft
    For FireFox:
    /Home/Library/Applications Support/FireFox
    /Home/Library/Preferences/org.mozilla.firefox.plist
    Credit goes to another forum user for this information.

  • Trying to import boujou .ma tracking data into after effects, seems like it doesn't support the file.

    I have tried everything to try and get this to work; i have tried multiple settings in boujou, i have imported the .ma file into maya and exported with baked keyframes and only the camera selected etc. I don't know what i'm doing wrong. I am wondering whether Adobe has cut support for .ma files altogether, which is a real pain in my *** as the built in 3d track just isn't good enough. I have tried dragging the file into after effects, i have tried importing it neither of which do anything. The .ma files don't even show up, i have to select 'all files' under the file type when i choose import to even see the files, and when i click them it doesn't recognize it as tracking data, it'll try and import it as a .PNG file or something. I can't seem to find any plugins that would enable me to import .ma files. I just need that tracking data as a Camera in my scene and i don't care how it is done. Additionally, i have tried exporting as a .txt file and copying and pasting that data into a camera, which doesn't work (unless im doing it completely wrong).
    Thankyou for reading

    I also experience this problem. My mp4 clips has been taken with a Samsung NV24HD camera and are HD (720p). I haven't tried to convert these clips but I think it should not be necessary since I can play them in quick time. However I have perian installed, perhaps that's why they play in quick time? The next question is then: Is there a similar plugin to iMovie?

  • Using Import Man to load Data into Multi Value Fileds in a Qualified Table

    Hi there,
    When using the Import Manager, i can not use the "append" option to load data into my multi value field which is contained within my qualified table.
    Manually it works fine on Data manager, so the field has been set up correctly. Only problem is appending the data during Import Manager Load.
    Any reason why I do not have this option available during Field mapping in Import Manager. The selection options are shown but in gray.
    Would appreciate any sugestions.
    Chris Huggett

    Thanks Sowseel
    Its a good document but doesn't address my problem, maybe My problem isn't clear.
    The structure(part of) that I have currently is as follows.
    Main Table - Material
                           QFTable-  MNF PN
                               LUField - MNF Name(Qualifier Single Value)
                               LUField  - BU ID  (Non Qualifier Multi Value)
                               TField   - P/N- (Non Qualifier)
    I know how to load data to the main and qualified tables, but what I can not do, using Import Manger, is updating the  "LUField  - BU ID  (Non Qualifier Multi Value)" using the append functionality.
    Thanks
    Chris Huggett

  • I find no way to import my my.yahoo data into Thunderbird, the import does not show a source.

    I downloaded and installed Thunderbird then used the import command to import my contact list. It did not import anything. I tried to import everything, again it imported nothing. I uninstalled TB and re-installed it. This time I tried to import everything first, and again it imported nothing. I have tried exporting the contact list from Yahoo email in both .csv and .ldif, but find no way to input or import them into TB. What can I do to import the address or contact file into TB. I have changed computers, but I am still using Windows 7 pro, and TB didn't have any trouble when I put it into the previous computer, which used Yahoo, last time. I'm at a loss as to how to do this other than manually typing in the listing, and I don't intend to do this even though I like TB much better than Yahoo for email.
    Also, when TB copied my email from Yahoo, it failed to transfer most of my archived email, although it did get some of them. How can I move the rest of my archives, (3 email addresses) into TB? None of the canned messages address my problems.

    '''re: Address book:'''
    Export the contact list from Yahoo as a comma separated .csv and save this on your desktop.
    In thunderbird.
    * open 'Address Book'
    * Tools > Import
    * select 'Address books'
    * click on Next
    * select 'Text file (ldif, .tab,.csv,.txt)
    * click on Next
    * locate the.csv file on desktop and click on Open
    * map fields to match Thunderbird fields
    '''re: Mail'''
    Do you have a Pop mail account?
    If yes, then all pop mail accounts (no matter what the email client) can only see the server Inbox and download any previously not downloaded email.
    To get other emails in other server folders onto Thunderbird, you need to:
    * logon to webmail account using a browser
    * move emails into inbox.
    In Thunderbird
    * click on GetMail to download those emails.
    * Move emails into suitable folders.
    * repeat as necessary to download emails.
    Three email addresses - this would require a mail account for each email address.

  • Locking dates into ical

    I find that iCal has a bad habit of changing dates within my calendars when the item at issue dates well into the future. I think this is an issue of synching my desktop and PB, where I change something on one and it does not get changed on the other but is overwritten by the older information. Does anyone know if it is possible to 'lock' a particular item so that it does not move without expressly being changed?

    I have a similar problem, except in my case when I click on "add to ical" nothing happens - nothing shows up in i cal.  This function worked perfectly OK in Snow Leopard.

  • Importing very special binary data into Diadem

    In order to use DIAdem I need to import binary data from transient recorders. The data is stored in block mode (CH after CH), as X-Y data pairs. All channels have different length but the structure and channel names are written into a special header block, preceeding the data. The X-Y data pairs are written into words (32-bit) with variable X/Y separation, that is that Y maybe e.g. 12-bit wide and thus X using the remaining 20 bits of the word. The X/Y separation position is coded in the header too.
    Can I define a very complex import rule directly in DIAdem or can I call a LabVIEW file read and decode driver? Or is it simply impossible, except I convert all of my 120000 data sets and have them using 4 times more space?
    Many thanks in advance to the experts!
    Marco Mailand
    ABB Switzerland Ltd.
    High Voltage Technology
    Solved!
    Go to Solution.

    Mr Mailand,
    generally, you can import binary data with the function "Import via header" which you find in the file menu (submenu DAT files) in the Navigator / Data Window. Within the dialog you can specify how your data is ordered in the file. But you are limited to some standard storage mode so you might not succeed importing the data in that way.
    Of course you can also call LabVIEW VIs and write the imported Data directly to DIAdem channels. The LabVIEW-DIAdem Connectivity VIs provide the functions you need for the data exchange.
    Another way would be to import the data with help of a VBScript.
    But there is also another method to expand the DIAdem features: With the GPI toolkit you can generate your own plugin DLLs for DIAdem. You can implement all the code you need
    to import the data in a c-program and import that function into DIAdem. In that way you will be able to load your data just as any other datatype using the standard file open nemu.
    GPI Toolkit for add-on DIAdem DLL creation
    http://digital.ni.com/softlib.nsf/websearch/D605AA96CF81760C86256C7600742EC5?opendocument&node=132070_US
    LabVIEW DIAdem Connectivity VIs Version 2.1
    http://digital.ni.com/softlib.nsf/websearch/D73B15862235486D86256D2D00798738?opendocument&node=132070_US
    Calling LabVIEW VIs interactively from DIAdem
    http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=D18837DE23EE32F6E034080020E74861&p_node=DZ52246&p_source=External
    Ingo Schumacher
    Application Engineering
    National Instruments

  • Does Numbers support importing dynamic XML web data into spreadshit?

    I am trying to find a similar functionality that I've been using in MS Excel (Windows platform). In excel, I am able to import an xml (residing in the cloud) into a sheet and work on data and update the base data whenever I request.
    Is there a similar feature in Numbers, or in Mac OS where I can work with XML data residing in the web.
    Note: Although Windows version of Excel supports this, Mac version does not. Is this some kind of OS limitation?
    Thanks,

    In Numbers '09 there is the function HYPERLINK() described as:
    HYPERLINK
    The HYPERLINK function creates a clickable link that opens a webpage or new email message.
    HYPERLINK(url, link-text)
    • url:  A standard universal resource locator. url is a string value that should contain a properly formatted universal resource locator string.
    • link-text:  An optional value that specifies the text that appears as a clickable link in the cell. link-text is a string value. If omitted, url is used as the link-text.
    Examples
    =HYPERLINK(“http://www.apple.com”, “Apple”) creates a link with the text Apple that opens the default web browser to the Apple homepage.
    =HYPERLINK(“mailto:[email protected]?subject=Quote Request”, “Get Quote”) creates a link with the text Get Quote that opens the default email application and addresses a new message to [email protected] with the subject line Quote Request.
    It's what is the closest feature available.
    Yvan KOENIG (from FRANCE samedi 18 juillet 2009 10:30:29)

  • Imail dates into ical - Not working well for me

    I thought one of the new imail features in Lion was that you can click on a date in an email and it will create an event in ical.  But every time Ive tried it, it doesnt seem to recognize the correct date.  It recognizes the time but tries to put the ical event on todays date - not the date of the event...(whether it says something like tomorrow or the 17th --- and it's happened with emails Ive gotten from Apple addresses!)...  So Im wondering how it's supposed to work?  Because even when it tries to create an event, it gives me a chance to edit, but I dont seem to be able to edit the date...so its been useless.  It gives me the ability to edit the name of the event but not the date.
    Is this working smoothly for other people?  Any suggestions?
    The latest example was an email from an Apple employee that said "I can meet with you at 12pm on the 17th."  or "will see you at the workshop at 11am"

    I have a similar problem, except in my case when I click on "add to ical" nothing happens - nothing shows up in i cal.  This function worked perfectly OK in Snow Leopard.

  • Import dvd-ram video data into version 11

    I work with a mac mini and the external super drive. The importer window does not show the drive. Older posts recommend to use an internal drive, but of course ALL mac mini ONLY have external drives.
    When I transfer the data to hard disk it is also not possible to import it. Other software does open the .vro file without problem.

    I work on OSX Mavericks but I don't work with a Mac mini, so I've no idea what its special needs are.
    But you should have no problem navigating to a properly configured drive, even if it's external. I frequently use an external drive as my media source for my iMac.
    So I'm not sure what's up at your end.

Maybe you are looking for