Merging events from multiple calendars into one calendar

I am using iCal version 2.0.5 on Mac OS 10.4.11.
Right now, there are 3 separate calendars setup in iCal: Personal, Home and Unfiled. What I would like to do is merge all of the events from these calendars into the Personal calendar and then delete the other two calendars (Home and Unfiled). Is there any trick to easily doing this?
Thanks,
Andrew

Andrew,
Welcome to Apple Discussions.
Before you do anything else, use iCal>File>Back up Database..., and save the backup to your Desktop.
Then use iCal>File>Export... for the Calendars that you want to merge into "Personal", and then delete Home/Unfiled from your CALENDARS sources pane.
Next click on the exported copies on the Desktop and you will be presented with an "Add Events" window which will allow you to choose "Import" into the Personal Calendar.
If everything is working as desired use Back up Database... for the new setup.
;~)

Similar Messages

  • Items from multiple folders into one?

    Any programs that can move thing's out of multiple folders into one?
    I'm thinking in particular iPhoto, roll folders with images inside, want to move them all out and into one folder. I would rather not go through each one and move manually as could take a while, especially if there are say hundreds of folders each with photos inside i want to move into one.
    Must be a program or something that will do it?

    I find one:
    http://www.macupdate.com/info.php/id/29405/bundle-files
    I've never tested it and it has no reviews. Proceed at your own risk.
    EDIT: Make that three!
    Also, http://gotoes.org/sales/CopyMoveFilesSingleFolderMultiple/HowTo_Move_Files_To_SingleFolder.php
    ...and
    http://www.macupdate.com/info.php/id/25597/the-big-mean-folder-machine
    -mj
    Message was edited by: macjack

  • How can I combine multiple calendars into one calendar?

    I've been using iCal for a very long time, upgraded to iCloud, when it was fully operational.  In addition to my personal calendar, I have used several different calendars for different kinds of  business activities.  However, I am not at a point, where tracking different business related activites is no longer necessary.  So, I would like to know how to combine all the unnecessary calendars into a single business calendar.  I want to be able to transfer my entire calendar history from all the calendars to a single calendar.
    Thanks in advance for your recommendations.

    For each calendar, from the File menu choose 'Export...' then 'Export...'; from the sub-menu. This will create an .ics file at the location chosen in the Export dialog.
    From the File menu choose 'Import...' then 'Import...' from the sub-menu. A navigation pane will open: navigate to and choose your exported .ics file.
    You will get a pane with a drop-down menu - choose the calendar you want to add this data to.
    Be aware that this procedure can't be undone.

  • Selecting from multiple tables, into one internal table

    Hi,
    What is the best & most efficient method of selecting from multiple table (in my case 6,) into one internal table?
    Thanks,
    John
    Points will be rewarded and all responses will be highly appreciated.

    I have simple example :
    First one - Join 5 tables
    data : f1 type i,
              f2 type i,
              f3 type i.
    start-of-selection.
    get run time field f1.
    write the query 4 or 5 tables join.
    get run time field f2.
    f3 = f2 - f1 ( Total time).
    Second one - joins 3 table and use for all entries
    data : f1 type i,
              f2 type i,
              f3 type i.
    start-of-selection.
    get run time field f1.
    write the query 3 tables join and use for all entries
    get run time field f2.
    f3 = f2 - f1. ( Total time )
    Finally you can have time diffrence between the both sql statement.

  • HT4436 Merging Tracks from separate computers into one Cloud account...

    My iTunes for my MacBook and PC are the same account, but currently have different tracks.  Will I be able to merge all these into one account, and have equal access to them?

    iCloud is a separate service from iTunes, creating an iCloud account will not resolve your iTunes issues. You may be interested in iTunes Match.

  • Combine CSV columns from multiple sources into one

    Hi, 
    I am trying to import column from one CSV file and output it into additional columns on a Get-MailboxStatistics | Export-CSV command. The issue with the script I have created is that when use an Expression to create the new column it outputs all of the items
    in the column from the import CSV into one row. See script below, I have highlighted the expressions that are not working.
    Any assistance would be appreciated. 
    [Array]$Global:NotesMailSizeMaster = (Import-Csv c:\usermigration.csv).MailSizeMaster
    [Array]$Global:NotesMailSizeRefresh = (Import-Csv c:\usermigration.csv).MailSizeRefresh
    [Array]$Global:UserAlias = (Import-Csv c:\usermigration.csv).Alias
    if (!(Get-PSSnapin |
    Where-Object { $_.name -eq "Microsoft.Exchange.Management.PowerShell.Admin" }))
    ADD-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin
    $Output = ForEach ($Alias in $UserAlias)
    { Get-MailboxStatistics $Alias | select-object DisplayName, ServerName, StorageGroupName, Database, @{ Name = "TotalItemSize"; expression = { $_.TotalItemSize.Value.ToMB() } },
    @{ Name = "NotesMailSize(PreRefresh)"; expression = { $NotesMailSizeMaster } }, @{
    Name = "NotesMailSize(PostRefresh)"; expression = { $NotesMailSizeRefresh }
    $filename = (Get-Date).ToString("yyyyMMdd")
    $Output | export-csv -Path c:\"$filename-mailboxstats.csv" -NoTypeInformation

    There's a lot wrong with this script:
    1.  You're importing the same file 3x; you should import one and reference the things you need out of it.
    2.  If the CSV has more than one row in it, your .notation you're using to access the MailSizeMaster, MailSizeRefresh, and Alias properties is used incorrectly.  If you are trying to reference each of those properties from an array of different entries,
    the proper way would be:
    $Import = @(Import-Csv C:\usermigration.csv)
    $MailSizeMaster = $Import | Select-Object MailSizeMaster
    OR
    $MailSizeMaster = $Import | Select-Object -Expand MailSizeMaster
    ...the "OR" is not PowerShell. 
    3.  I don't know if you can concatenate different objects with the select-object cmdlet like you are.  However, what you could do is create a custom object to load the values into and then output that object:
    $filename = (Get-Date).ToString("yyyyMMdd")
    foreach ($item in $Import) {
    $MS = Get-MailboxStatistics $item.Alias
    New-Object PSObject -Property @{
    'DisplayName' = $MS.DisplayName
    'ServerName' = $MS.ServerName
    'StorageGroupName' = $MS.StorageGroup
    'Database' = $MS.Database
    'NotesMailSizePre' = $item.MailSizeMaster
    'NotesMailSizePost' = $item.MailSizeRefresh
    } | Select-Object DisplayName,ServerName,StorageGroupName,Database,NotesMailSizePre,NotesMailSizePost | Export-Csv -NoTypeInformation "C:\$($filename)-mailboxstats.csv"

  • Collecting data from multiple rows into one column

    I'd like to run a query and put a collection of items into one output column instead of multiple rows. See the example below:
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Prod
    PL/SQL Release 10.2.0.5.0 - Production
    "CORE     10.2.0.5.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
         CREATE TABLE "SKIP"."INGREDIENTS"
       (     "INGRED_ID" NUMBER,
         "INGRED_NAME" VARCHAR2(20 BYTE),
         "STORES" VARCHAR2(20 BYTE)
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS" ;
    REM INSERTING into SKIP.INGREDIENTS
    Insert into SKIP.INGREDIENTS (INGRED_ID,INGRED_NAME,STORES) values (1,'SEA SALT','Food lion');
    Insert into SKIP.INGREDIENTS (INGRED_ID,INGRED_NAME,STORES) values (2,'TABLE SALT','Food lion');
    Insert into SKIP.INGREDIENTS (INGRED_ID,INGRED_NAME,STORES) values (3,'FLOUR','Piggly Wiggly');
    Insert into SKIP.INGREDIENTS (INGRED_ID,INGRED_NAME,STORES) values (4,'YEAST',null);
    Insert into SKIP.INGREDIENTS (INGRED_ID,INGRED_NAME,STORES) values (5,'BEER','ABC Store');
      CREATE TABLE "SKIP"."PRETZELS"
       (     "PRETZEL_ID" NUMBER,
         "PRETZEL_NAME" VARCHAR2(20 BYTE),
         "PRETZEL_DESC" VARCHAR2(100 BYTE)
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS" ;
    REM INSERTING into SKIP.PRETZELS
    Insert into SKIP.PRETZELS (PRETZEL_ID,PRETZEL_NAME,PRETZEL_DESC) values (1,'CLASSIC','Classic knot pretzel');
    Insert into SKIP.PRETZELS (PRETZEL_ID,PRETZEL_NAME,PRETZEL_DESC) values (2,'THICK STICK','Straight pretzel, abt 1/2" in dia');
      CREATE TABLE "SKIP"."INGRED_XREF"
       (     "PRETZEL_ID" NUMBER,
         "INGRED_ID" NUMBER
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "USERS" ;
    REM INSERTING into SKIP.INGRED_XREF
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (1,1);
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (1,2);
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (1,4);
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (2,2);
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (2,3);
    Insert into SKIP.INGRED_XREF (PRETZEL_ID,INGRED_ID) values (2,5);
    --  Constraints for Table INGRED_XREF
      ALTER TABLE "SKIP"."INGRED_XREF" MODIFY ("PRETZEL_ID" NOT NULL ENABLE);
      ALTER TABLE "SKIP"."INGRED_XREF" MODIFY ("INGRED_ID" NOT NULL ENABLE);
    {code}
    Desired output (note how the ingredients are all listed in one column, separated by commas):
    {code}
    PRETZEL_ID PRETZEL_NAME     PRETZEL_DESC                        INGREDIENTS
    1          CLASSIC          Classic knot pretzel                SEA SALT, TABLE SALT, YEAST
    2          THICK STICK      Straight pretzel, abt 1/2" in dia   TABLE_SALT, FLOUR, BEER

    See the FAQ : {message:id=9360005}
    Especially links concerning string aggregation.

  • Add Text From Multiple Fields Into One

    I'm creating a form in Acrobat 9 that lets you fill in information for four cars. For each of the four cars, there is a text box for Manufacturer, Model, and Year. I have the boxes labeled Manuf1, Mod1, Year1, Manuf2, Mod2, etc.
    Then I two other text boxes called Text1 and Text2. In Text1 I want all the manufacturers listed together( example: Ford, Chevy, BMW) and the same thing for the models in Text2. What would be even better would be if in Text1 and Text2 the names could be seperated with "or".
    Is there a javascript that can do this and not repeat a name (if, for example, the first two cars were both Ford, the third was BMW and the fourth was Chevy, I want Text1 to display: Ford or BMW or Chevy, not: Ford or Ford or BMW or Chevy)?
    Thank you for the help!

    The code sample you provided is using AcroForm scripting and will not work in this form. There is another post similar to this one...have a look at this one it might help you out. It is doing the opposite of what you want but the concept of the loop and how each field is addressed inside ofthe loop is what you wil need.
    http://forums.adobe.com/message/2954517#2954517
    Paul

  • Is there a way to merge several iCal calendars into one?

    Anyone know if there is a way to merge several iCal calendars into one Calendar? I've separated a few different calendars for things and want to merge all of those events into one universal Calendar. I asked Apple Support and they stated there isn't a way to do this. So, I'm throwing this out there in case someone knows a way.
    Thank you!

    Found the answer after troubleshooting on my own. I was able to do this on a PC by using Office 2007 and the calendar in there. I also had to setup Mobile Me to the calendar on my PC which was fairly easy.
    What you'll have to do is have Mobileme sync your calendar data with Outlook.
    Then after they sync in Outlook... manually select each imported calendar, choose to view all appointments, select all (to select all of your events), copy, then paste them into the main "Calendar".
    Follow this step for all of your calendars and it works like charm.
    The only thing left to do after you've copied them all is to delete the old calendars after you have all of the events copied.
    This may be able to be done in iCal too using similar methods, however it was really easy for me to do it in Windows with Outlook 2007.
    Just keep in mind that you want to view all events from each separate calendar and just copy those into your main calendar.

  • Copy text from multiple fields to one field

    I would like to copy text from multiple fields into one field. Each of these smaller fields will only be allowed to have one character. The larger field will not be able to be edited.
    So far, I have thought of creating a naming heirarchy for these fields. I was going to then call upon the array of the parent and set the value of the parent to equal this array.
    var parent = this.getField("everything");
    var array = everything.getArray();
    var v;
    for(parent=0; parent<array.length; parent++)
    v = a + " " + v;               //Im guessing this line is incorrect
    parent.value = a;
    Any suggestions? or a better way of doing this.
    Thanks

    The code sample you provided is using AcroForm scripting and will not work in this form. There is another post similar to this one...have a look at this one it might help you out. It is doing the opposite of what you want but the concept of the loop and how each field is addressed inside ofthe loop is what you wil need.
    http://forums.adobe.com/message/2954517#2954517
    Paul

  • How to merge calendars into one on iPhone

    I have too many (not sure why). I want to merge them all into one calendar on my iphone and then have this one calendar be the only calendar on my macbook pro and iCloud.  Any suggestions?

    Hi,
    I have done that with the help of Tom.
    Visit this
    http://asktom.oracle.com/pls/ask/f?p=4950:8:16225631820134005350::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:1057632370697
    Regards.

  • Publishing multiple calendar categories into one calendar

    Is it possible to publish multiple calendar categories into one calendar on my .Mac?

    David,
    welcome to Apple Discussions.
    I'm not sure if I understand correctly what you mean with "categories". Maybe you want to achieve what I described in "Publishing more than one calender" #1, 04:11pm Oct 19, 2005 CDT
    HTH
    Matthias

  • Multiple Exchange email accounts into one calendar?

    I've been looking for a definitive answer for this for awhile now and searches always leave something to be desired. Anyway, if a user has multple exchange accounts with different addresses, is there anyway to combine all of those accounts into one calendar?
    The addresses should be forwarding to the "main" one, but the issue comes when someone sends a calendar invite to the different account([email protected] instead of [email protected], for example), it will only show up on the email1 account even
    though it was forwarded to the email0 account. This is causing people to be double booked in our environment when one calendar shows free because someone looked at the wrong one. 
    To further piggyback that idea, is there anyway to turn OFF the calendar feature with an account so one can not even book it? 
    Most of the answers I have seen say this is NOT possible, and only way to "combine" is to overlay, which isn't the same thing at all. Any ideas?

    Hi,
    Please refer to the link below:
    http://community.office365.com/en-us/forums/158/p/20554/96392.aspx#96392
    Does that meet your scenario? If yes, disable users' access to the calendar in Outlook Web App by connecting to Exchange Online service and running the following command in PowerShell:
           Set-OwaMailboxPolicy OwaMailboxPolicy-Default -CalendarEnabled $false
    More information about using Windows PowerShell in Exchange Online, please refer to this link:
    http://help.outlook.com/en-us/140/cc546278.aspx
    Regards.
    Melon Chen
    TechNet Community Support

  • How do I combine all my calendars into one and delete the others?

    I have a work computer, a home desktop, and Apple air laptop and an 1phone 4s.
    I use Outlook calendar for all my appointments and only need one calendar.
    When I get notifications of my upcoming events on the Oulook page and on my iphone, I get multiple notifications, sometimes as many as 6 times.
    How can I combine all my calendars into one and delete the others?

    Your old account is the one you migrated, but it has been renamed because the new account had the same name. "Fixing" this is a bit complicated. It is possible to transfer data from one account to the other. See Transferring files from one User Account to another.
    A cleaner solution is to do this:
    Create a temporary new admin user account with a completely different username.
    Log into this new account.
    Delete the new account you created before migrating.
    Delete the old account you migrated that has the changed name.
    Re-migrate your old account from the Mini.
    Log into the newly migrated account and delete the temporary account.
    And, the simplest solution is to use the migrated account as-is and delete the account you originally made on the new computer.

  • ICal consolidated all of my calendars into one! No undo option!

    I have four calendars in my iCal, I did this so I could publish just one of these to my .Mac account. Things seemed to be going okay, I had three calendars turned-off from view by unchecking them, as I started to look at the calendar I got the spinning rainbow beachball of death and tried clicking on the iCal window, nothing, so I double-clicked, still nothing (iCal is still open with events from the checkmarked calendar showing, beachball still spinning).
    Beachball stops spinning and now every single one of my events have been placed into the calendar I was viewing! The other calendars are empty, it consolidated all of the events into one calendar. There is no undo option. I didn't even know iCal could move events from one calendar to another enmass like that. So now I'm stuck, my last iCal backup was a week ago and many events have changed, I sync with both my Palm Treo and .Mac so I don't want to mess those calendars up. And even if I owned an iPhone this would be a major problem.
    At the very least, is there a way I can change all iCal events en-mass again to a specific calendar? Then at least I can move single events to the proper places to recover from this mess. Why doesn't Apple provide an option in iSync to completely overwrite my desktop with handheld data? You can overwrite the handheld with the desktop data but not the other way around. I have my handheld PDA available much more often than my desktop so that calendar and Address book is much more up to date all the time. I hate iCal it's one of Apple's most inelegant apps with the poorest user interface.
    Message was edited by: Baron Sekiya

    Okay, I believe I figured-out how to change events to different calendars en masse. But iCal seems to be choking on the changes.
    1. Click on Results List button on the bottom (third from the right).
    2. Select events to change (there is no Select All option in Edit, though you can click on the 1st event, then SHIFT-click on the last event if you want to select a block, or COMMAND-click to add/remove individual events from the selection)
    3. Right-click (or Control-click) on the selected events to bring-up the contextual menu.
    4. Go to calendars and select the calendar to attach the events to.
    Now this should work, but iCal completely chokes on doing a large group of events. Small bunches do work but iCal is so inefficient it can't make the changes I need.
    Anyone else got a good solution? Other than: Buy a MacBook Pro?
    For the time being I'm switching back to Now Up To Date, the best calendar for the Mac. I gave iCal a shot but NUTD is vastly superior. Maybe when Mac OS 10.5 and Time Machine comes out I'll give iCal another try.

Maybe you are looking for