Numbers to ical?

is there a way to export a numbers document with dates into ical so that the dates will show up in my ical? or directly into my ical to-dos?

Hello
As far as I know, iCal is able to import
- iCal datas
- vCal datas
- Entourage datas
It seems that none of these format may be created from iWork's components.
You may have a look to the free demo of the new Bento from FileMaker (100% Apple subsidiary).
Yvan KOENIG (from FRANCE mardi 4 mars 2008 16:39:28)

Similar Messages

  • How do I export Dates from Numbers to iCal?

    I'm building a spread sheet in *Numbers '08* with +expiration dates+ for many of the line items. I would like to export those dates to iCal so that iCal can _show/send me a reminder on those dates_. I've read that some people may be using a program called Bento to interface between Numbers & iCal. Seems like one should not have to buy an entire software program to export a simple date from Numbers to ICal -- both being native Apple programs.
    Perhaps there is a way to get Numbers to send date reminders without exporting to iCal?
    Any feedback is much appreciated.

    Here is the script doing the trick with Numbers '09.
    --[SCRIPT createical_events_fromNumbers'09]
    Enregistrer le script en tant que Script : createical_events_fromNumbers'09.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner les cellules d'une table de Numbers qui décrivent des 'events'
    La table est censée contenir:
    une colonne avec la description des événements
    une colonne avec les date_heures de début
    une colonne avec les date_heures de fin
    Éditer la property 'theCalendar' en fonction du nom du calendrier à alimenter.
    menu Scripts > Numbers > createical_events_fromNumbers'09
    Le script crée les évènements dans iCal
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: createical_events_fromNumbers'09.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    In a table from Numbers '09,
    select cells describing 'events'.
    This table is supposed to embed :
    a column storing events descriptions
    a column storind start datetime
    a column storing end datetime.
    Edit the instruction defining the calendar name to fit your needs.
    menu Scripts > Numbers > createical_events_fromNumbers'09
    The script will create new events in iCal.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    This script creates new events from the content of selected cells from a Numbers '09 table.
    --=====
    example:
    event #1 18 avr. 2010 05:35 19 avr. 2010 15:35
    event #2 19 avr. 2010 05:35 20 avr. 2010 15:35
    event #3 20 avr. 2010 05:35 21 avr. 2010 15:35
    event #4 21 avr. 2010 05:35 22 avr. 2010 15:35
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/03/25
    --=====
    property theCalendar : "Personnel"
    property nbItemsPerEvent : 3
    --=====
    on run
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    set colNum2 to colNum1 + nbItemsPerEvent - 1
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    repeat with r from rowNum1 to rowNum2
    set eProps to {}
    repeat with c from colNum1 to colNum2
    copy (value of cell r of column c) to end of eProps
    end repeat -- with column
    Now, eProps contains
    - the event description
    - the start date_time
    - the end date_time
    my makeEvent(eProps)
    end repeat
    end tell -- Numbers
    end run
    --=====
    on makeEvent({descr, sDate, eDate})
    tell application "iCal"
    make new event at the end of events of (every calendar whose name is theCalendar) with properties {description:descr, start date:sDate as text, end date:eDate as text, allday event:true}
    end tell
    end makeEvent
    --=====
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
    end if
    return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
    apply to named row or named column !
    on decipher(n, d, s, t)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on parleAnglais()
    local z
    try
    tell application "Numbers" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) jeudi 25 mars 2010 22:50:17

  • HT2513 I can barely see the day and time numbers in ical - any suggestions?

    I can barely see the day and time numbers in ical. I have tried adjusting contrast but doesn't help. Any suggestions?

    Could be corrupt plist try deleting com.apple.systemuiserver.plist
    found here  by using Finder>Go>Go to Folder (command shift G):
    copy and paste:
    ~/Library/Preferences/ com.apple.systemuiserver.plist
    delete this plist.
    now open terminal (Applications/Utilities/terminal.app) and paste the command:
    killall SystemUIServer
    and return. This command will kill the process and MacOS X will automatically rebuild the menu bar, clearing out old cache. Quit Terminal.
    Restart if neccessary.

  • Is there a way to darken the dates (numbers) on ical. After installing Lion I can barely read the dates of the month in ICal

    Is there a way to darken the dates (numbers) on the ICal calender. I can barely read mine after installing Lion.

    I should note that the time stays on the left of the event name when I re-enter the text (which I had to do all the time before I found the "show event times" button) so I feel like there's a way.

  • Numbers to iCal? Export to ICS

    I'm trying to simplify my calendar situation and use numbers to import a csv, make my changes and save. I can then get that to my phone and a work calendar.
    Imprting to iCal souldn't be any more difficult. Has anyone come up with a template for iCal data? Basically the column headers.
    And now how to export?

    Actually, this IS completely possible using FileMaker and not very complicated!
    After exporting a calendar from iCal and dragging the file onto the FileMaker icon, the events will import as thousands of individual records. From here it simply becomes an exercise in parsing the data from multiple records into individual event records using a FileMaker script
    In a nutshell, your script should:
    Start at the first record
    Capture desired data from raw ICS data records into variables for temporary storage between the start and end of each event (between BEGIN:VEVENT and END:VEVENT) while deleting records with data that you don't need
    Once you reach the end of your event, create a new record in a separate table and set the event title, event date, start and end times (which can be used to calculate the total hours), and any other fields you need from the temporary variables.
    Clear the variables
    Return to the original table and loop through this same process until you reach (and delete) the last record in the raw ICS import
    I exported one of my calendars and, when imported into FileMaker there were over 47,000 records. I ran one parsing routine that took just a minute or two.
    To properly pull your data so that you could report to the tax office would take a few hours (2-3?) to program and test so you could get the raw data. To format it for reporting to the tax office would take a bit longer.
    Unfortunately, this FileMaker development my business and cannot do this for for free, though I hope to have helped you along at least a bit. Contact me separately if you'd like to discuss this more offline. You contact me via the surefootdata website.
    All the best,
    Jim

  • Dates in Numbers to iCal?

    I have a spreadsheet that has a range of dates I need to contact certain people. Is it possible to write a script or have some sort of integration where these dates could be synced with iCal as events?
    Thanks in advance for any insight you might provide!

    Definitely possible to have "some sort of integration".  What kind of integration do you have in mind?
    For example it is not hard to have AppleScript take information from Numbers and give it to Calendar.  True two-way "syncing" would be a tough nut to crack, though.
    What sort of information do you want to transfer: just a person's name and a followup date?
    SG

  • How can I access SCXI module serial numbers programmat​ically?

    Hardware traceability is a necessity in my industry, so I need to be able to track the SCXI modules used in a test by stamping the serial numbers on the data files. I am able to do this for the DAQ devices, but I cannot find a way to do this for the SCXI modules. I am using LabWindows/CVI with NI-DAQ 7.0 traditional.

    You cannot "access it" at all using a serial number.
    Please explain what you are attempting.

  • Iphone email or phone call from stoed addresses and phone numbers on ical

    on i phone can i add phone number or email address on ical and the clik on phone number or email address to make a call or email

    First, you have to updates your contacts info using Address Book.

  • 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.

  • Changing iCal Print Layout

    Hi
    When I print a calandar month, the month and year are top left on the paper so that when I hole-punch the page to stick in my filofax, the month has got a big hole in the middle.
    Is there a way of changing the print layout so that I can move the month a bit towards the centre ?
    Any suggestions very welcome. I hate it looking untidy !!

    I've been battling the lack of a "Page Setup..." menu in iCal for several hours, even after reading the fix above. Some of my conclusions and a tip:
    1. It seems that iCal 'gathers' the paper/printer info when it starts up. It is therefore a waste of time to set these dimensions while iCal is still running/open.
    2. Any app that allows access to the "Page Setup..." menu can be used to create/modify a custom/existing choice.
    3. It may be better to set up a 'custom' setting using "Any Printer" rather than any specific printer you may have.
    Perhaps the most important fact I discovered is that it is more important to set the paper dimensions than the actual margin numbers! iCal seems to prefer using a minimum margin setting regardless of what is defined in any "Page Setup..." item. But it will recognize and respect a slightly smaller page size and print within it. For example, my final success came when I re-defined the normal 8.5 x 11 inch paper as 8.25 x 10.75 inches! Just be sure to crate this as a custom, named setting so you can find and select it in iCal.
    BTW, I have not attempted other 'standard' paper sizes, just the 'full-size' version.
    Anyone have an idea why iCal ignore the GUI standards?! Or is simply another attempt at 'integrating' all apps; like using Safari to tell the OS to use another browser? What happened to Apple's 'user friendliness' mantra?

  • Phone number links in iCal on iPhone

    When I receive an email on my iPhone that has a phone number included in the text it shows as a link I can tap, and then my iPhone will dial the number. Nice. Is there a way to enter a phone number in iCal that will act the same way? I often place customer phone numbers in iCal appts, but they are not clickable; it would be really handy if they were. Am I just not knowing how to do this?
    Thanks!

    I don't believe this is possible. I sometimes enter a phone number as a note for an event, but the number is not active/clickable to dial the number as is available with a received email or with a website.

  • Getting rid of week numbers

    I installed a program to show the week numbers in iCal.
    I don't like it because it also places a bar with the week number across all the week's days.
    Now I want to remove it, but can't figure out how.
    Any advice?
    Powerbook G4 12"   Mac OS X (10.4.9)  

    Hi John,
    Fantastic !
    It worked.
    All the best,
    Robert
    Hi Robert,
    They shouldn't be too difficult to get rid of. Make
    sure you back up your iCal data in case things get
    messed up. (in iCal: File > Backup Database...)
    (In this I am assuming the events have titles like
    'Week 1', 'Week 2' etc.)
    In the calendar list (on left side in iCal) uncheck
    all calendars apart from the one that has the week
    number events (your 'birthday' calendar).
    On the lower right of the main iCal window there is a
    button with 3 horizontal lines (the search button).
    With nothing in the search box, click this button.
    The search results pane will appear with all the
    events in your 'birthdays' calendar.
    You can re-order these by date, title, priority etc.
    by clicking the title on the relevant column. Click
    the title (or name) column header to order by the
    event title.
    Now scroll down and find the first event that starts
    with 'Week'. Click this event. Scroll down and find
    the last event that starts with 'Week'. Shift-Click
    this event.
    All your events starting with 'Week' should now be
    highlighted. Delete these.
    Let me know how you get on.
    Best wishes
    John M
    Powerbook G4 12" Mac OS X (10.4.9)

  • Email ical

    I have made a time sheet of my work, how can I Email this weekly to the people I need to? I use to make a chart in numbers but ical is way easier and has the day broken down by hours. Numbers use to have the option to Email but I don't see is ical. Anyone got any ideas?

    Greetings,
    _If this "time sheet" is it's own calendar in iCal (a check box on the left hand side), click on the title of that calendar and then go to File > Export > Export.
    _Save the resulting .ics file to the desktop.
    _You can email this file to whomever you wish to share this calendar with. They can open this file with any program that can read calendar files (.ics).
    Alternatively:
    _Go to File > Print
    _Check off the desired calendar and then click "Continue"
    _Click "PDF" > Mail PDF and then send it to the recipient (this is a PDF version of that calendar)
    __This is an un-editable version of the information. So recipients can view/print it only.
    Hope that helps.

  • To iCal from my cell

    Hey,
    I got my phone to Sync with the iCal and Address book, cool. I have synced the numbers from the phone to the iCal successfully.
    What I can't figure out is how do I transfer my phone numbers to iCal from my cell phone once I have put a new number in. Thanks!

    It would be helpful if you mentioned which mobile phone you are referring to.
    Phone numbers do not go into iCal - they go into Address Book. iCal is for event info, whereas Address Book is for Contact info (name, address, phone numbers etc.)
    When you sync your phone, new Contacts and new Events should automatically be transferred from the phone to iCal and Address Book.

  • Nuttin works for me in snow leopard

    well, now that i have upgraded, pages, numbers, keynote, ical, and a host of other items won"t open...all i get is report sent to apple....like that will help me out now that school is starting and I have to use this coimputer to be somewhat productive. Any thaoughts to help this poor person out?
    Thanks
    Tom
    Message was edited by: Thomas Dillon1

    You could try installing again over your existing install. And, if you want to go back to Leopard, then you will need to do an erase and install. I would first try the Leopard (i.e., 10.5) DVD. But, you may have to use the Snow Leopard (i.e., 10.6) DVD for the erase part. Let's assume the first for now. Startup from the DVD by holding down c when starting up. Next, when able, choose your language and stop. Then, using the menus at the top, select Disk Utility and erase you drive. Next, quit Disk Utility and continue the install. After the install is complete, insert your Leopard applications disk and install the programs you want. Now, you are done.
    In the other case, you will have to exit the installer after exiting Disk Utility. Next, you would startup with your Leopard DVD again by holding c down during startup. Now, after selecting your language again, just click install. After the installer is finished, install your applications as above.

Maybe you are looking for

  • How can i use the internal table as a WHERE clause ?

    Dear Support , I have one internal table that save the material information ... data : begin of itab ,           matnr like mara-matnr , end of itab . And now i want to fetch the material desription text base on this internal table . As i know that t

  • Pages repeatedly crashing due to "SFWord Processing Plugin"

    I'll be working in Pages '08 and click on something (sometimes in the menu bar, sometimes in the text, sometimes in the Inspector--doesn't seem to follow a real pattern), and all the sudden I will get the spinning beach ball. I won't be able to save.

  • DBMS_XMLSAVE + Oracle XE 10.2

    The official documentation of the Oracle XE 10.2 ( http://download.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25108.pdf ) at the page 149 indicated that this version supports Oracle packages DBMS_XMLSAVE and DBMS_XMLQUERY, but I haven't those packa

  • MAC BOOK PRO 13 INCH -STARTUP PROBLEM

    i had a harware problem and i  removed and installed the memeory chip and the harware problem is gone ,i have re installed mac on my macbook pro again but while starting the mac it is taking to much time

  • System running hotter after disabling Hyperthreading!???

    Hi, I've been running my 875P in a system quite happily for the last few weeks and the Thermaltake Spark 7 has been keeping the CPU nice and cool and a decent 30c but after installing updated drivers for a modem here i found that the system crashed u