How to merge multiple MobileMe calendars?

(1) I have several calendars on MobileMe that I want to consolidate into one calendar.  How do I do that? 
(2) Everytime I delete the local "calendar" it reappears when I sync my iPhone with iTunes.  This presents a problem when I create a new event because that event defaults to the local calendar instead of my first MobileMe calendar.  Then this new event lives on my iMac but never sync's to MobileMe.
(3) I don't want to lose any of the events I have in my different calendars during this process.
To summarize: I want to get rid of the local calendars, consolidate the MobileMe calendars into one & not lose my events.  I want to end up with one MobileMe calendar for all my events (which will evenually roll over to the iCloud service).  Thanks for any suggestions & help.

kporterjr,
(1) I have several calendars on MobileMe that I want to consolidate into one calendar.  How do I do that?
Use MobileMe: How to back up calendar data using MobileMe Calendar for help in backing up and restoring MobileMe calendar data.
After the data is backed up, you can then restore each calendar into one new consolidated calendar.
(2) Everytime I delete the local "calendar" it reappears when I sync my iPhone with iTunes.  This presents a problem when I create a new event because that event defaults to the local calendar instead of my first MobileMe calendar.  Then this new event lives on my iMac but never sync's to MobileMe.
You appear to be using iTunes for syncing. Make sure that your iPhone is set up to use MobileMe sync: Apple - MobileMe - Set Up MobileMe.
I want to get rid of the local calendars, consolidate the MobileMe calendars into one & not lose my events.  I want to end up with one MobileMe calendar for all my events (which will evenually roll over to the iCloud service).
Be sure to use iCal>File>Export...>Export for each one of your "On My Mac" calendars. The exported copies will allow you to preserve your data and import that data into a new calendar. After successful import into a new calendar you can delete the "On My Mac" calendars.

Similar Messages

  • How to syn multiple google calendars

    Hi, I share my calendar with my wife's gmail calendar. Now on my Lumia 720 my appointments have synced but I am not sure how to set up the phone so it will also sync my Wife's calendar. Do I need to add her account on to my phone and just tag calendar and unchecked contacts etc?
    I used to have a iphone and once set up through m.google.com both my wife's calendar and mine appeared in different colors on the phone.
    Any advice on how to achieve this on a lumia 720 would be much appreciated.
    Thanks. James
    Solved!
    Go to Solution.

    I had the same problem (had multiple Google accounts, but only one synced with the calendar of my Lumia 620), and found the sollution from here:
    http://wonderreader.tumblr.com/post/7360213627/multiple-google-calendars-windows-phone
    I didn't had to do the JavaScript part, though, but otherwise I did as adviced. Also, I had difficulties at first as my Safari browser changed m.google.com/sync automatically to www-version. However, the https://m.google.com/sync/settings  worked just fine: I could immediately locate my Windows Phone and change the calendar settings to also allow other calendars to sync.

  • How to Merge Multiple PDF's

    HI Forum
    I am a newbie to both Acrobat and VB,
    Basically a perl Developer,
    I have created a application to Merge multiple PDF's into a Single PDF, but the problem I am facing is some pages are missed during Merging
    For Example
    I have 4 pdf's (1.pdf, 2.pdf, 3.pdf, 4.pdf), each PDF has 2 pages, totally 8 pages,
    When i merge using my application, it is getting collapsed and then merged
    Here is my Code
    <code>
    Imports System.IO
    Imports Acrobat
    Public Class Form1
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            MergePDF()
        End Sub
        Sub MergePDF()
            Dim gPDDoc1 As AcroPDDoc
            Dim gPDDoc2 As AcroPDDoc
            Dim gPDDoc3 As AcroPDDoc
            Dim gPDDoc4 As AcroPDDoc
            gPDDoc1 = CreateObject("AcroExch.PDDoc")
            gPDDoc2 = CreateObject("AcroExch.PDDoc")
            gPDDoc3 = CreateObject("AcroExch.PDDoc")
            gPDDoc4 = CreateObject("AcroExch.PDDoc")
            Dim chk1 = gPDDoc1.Open("D:\sathish\1.pdf")
            Dim chk2 = gPDDoc2.Open("D:\sathish\2.pdf")
            Dim chk3 = gPDDoc3.Open("D:\sathish\3.pdf")
            Dim chk4 = gPDDoc4.Open("D:\sathish\4.pdf")
            Dim mergefile As Boolean
            Dim numpg1, numpg2, numpg3, numpg4
            numpg1 = gPDDoc1.GetNumPages()
            numpg2 = gPDDoc2.GetNumPages()
            numpg3 = gPDDoc3.GetNumPages()
            numpg4 = gPDDoc4.GetNumPages()
            MsgBox(numpg1 & numpg2 & numpg3 & numpg4)
            mergefile = gPDDoc1.InsertPages(numpg1 - 1, gPDDoc2, 0, 1, 0)
            mergefile = gPDDoc1.InsertPages(numpg2 - 1, gPDDoc3, 0, 1, 0)
            mergefile = gPDDoc1.InsertPages(numpg3 - 1, gPDDoc4, 0, 1, 0)
            Dim savemergefile As Boolean
            savemergefile = gPDDoc1.Save(1, "D:\sathish\merged.pdf")
        End Sub
    End Class
    </code>
    I Dont know how to give the correct page end to merge,
    Thanks in Advance for your Kind replies,
    Thanks & Regards
    Sathish V.

    Great idea. do you have example code? I found some code but it its contingent upon the pages having a page number on them. the pdfs im dealing with have no page numbers on the pages. also this code deletes pages in a range. I need to delete all other pages except for the page numbers on the range. thanks! Option Explicit Sub Delete_PDF_Pages() ' Adobe code based on http://vbcity.com/forums/t/51200.aspx Dim xMsg          As String Dim xInput        As String Dim xOutput        As String Dim xResponse      As Long Dim xLast_Row      As Long Dim xErrors        As Long Dim xDeleted      As Long Dim i              As Long Dim j              As Long Dim AcroApp        As CAcroApp Dim AcroPDDoc      As CAcroPDDoc Dim AcroHiliteList As CAcroHiliteList Dim AcroTextSelect As CAcroPDTextSelect Dim xarray()      As Variant Dim PageNumber    As Variant Dim PageContent    As Variant Dim xContent      As Variant xInput = "C:\Users\jaime\Desktop\Granado LLC\test\TestPages.pdf" xOutput = "C:\Users\jaime\Desktop\Granado LLC\test\TestPages_Output.pdf" xLast_Row = [A1].SpecialCells(xlLastCell).Row ReDim xarray(xLast_Row) xResponse = MsgBox("About to delete all pages which contain values from the range A1:A" & xLast_Row & Chr(10) _             & Chr(10) & "Input:" & Chr(9) & xInput _             & Chr(10) & "Output:" & Chr(9) & xOutput _             & Chr(10) & Chr(10) & "('OK' to continue, 'Cancel' to quit.)", vbOKCancel, "Delete Pages") If xResponse = 2 Then     MsgBox "User chose not to continue. Run terminated."     Exit Sub End If ' Files and data OK? If Dir(xInput) = "" Then xMsg = "Input file not found - " & xInput & Chr(10) If Dir(xOutput) <> "" Then xMsg = "Output file exists - " & xOutput & Chr(10) xarray = Application.Transpose(Range("A1:A" & xLast_Row)) For i = 1 To xLast_Row     If Not IsNumeric(xarray(i)) Or xarray(i) = "" Then         xMsg = "Non-numeric ""Delete"" value of """ & xarray(i) & """ found on row " & i & Chr(10)         Exit For     End If Next If xMsg <> "" Then     MsgBox (xMsg & Chr(10) & "Run cancelled.")     Exit Sub End If ' Open the PDF... Set AcroApp = CreateObject("AcroExch.App") Set AcroPDDoc = CreateObject("AcroExch.PDDoc") If AcroPDDoc.Open(xInput) <> True Then     MsgBox (xInput & " couldn't be opened - run cancelled.")     Exit Sub End If ' Read each page... For i = AcroPDDoc.GetNumPages - 1 To 0 Step -1     Set PageNumber = AcroPDDoc.AcquirePage(i)     Set PageContent = CreateObject("AcroExch.HiliteList")     'Get up to 9,999 words from page...     If PageContent.Add(0, 9999) <> True Then                 Debug.Print "Add Error on Page " & i + 1         xErrors = xErrors + 1         Else         Set AcroTextSelect = PageNumber.CreatePageHilite(PageContent)             If Not AcroTextSelect Is Nothing Then             xContent = ""             For j = 0 To AcroTextSelect.GetNumText - 1                 xContent = xContent & AcroTextSelect.GetText(j)             Next j             For j = 1 To xLast_Row                 If InStr(1, xContent, xarray(j)) > 0 Then                     Debug.Print "Page " & i + 1 & " contains " & xarray(j) & " - " & xContent                     ' To avoid problems with the delete...                     Set AcroTextSelect = Nothing                     Set PageContent = Nothing                     Set PageNumber = Nothing                     If AcroPDDoc.DeletePages(i, i) = False Then                         MsgBox ("Error deleting page " & i + 1 & " - run cancelled.")                         Exit Sub                     End If                     xDeleted = xDeleted + 1                     Exit For                 End If             Next         End If             End If Next i If AcroPDDoc.Save(PDSaveFull, xOutput) = False Then     MsgBox "Cannot save the modified document"     Exit Sub Else     MsgBox (xDeleted & " pages deleted. (" & xErrors & " errors.)") End If     AcroPDDoc.Close AcroApp.Exit End Sub

  • How to merge multiple XML or Text documents into 1 Word Document?

    Hi all,
    We're looking for a way to merge multiple XML or Text documents into 1 Word document.
    All the XML or Text documents are oriented as a 'Paragraph', meaning smaller pieces of text.
    By selecting some of these XML documents, the system should be able to create a new Word document with all the selected text paragraphs included.
    The Word document can then be edited for applying a correct lay-out and the document is ready.
    Actually, we are trying to do some kind of 'mail merge' but with multiple XML or Text documents!
    Has anybody an idea whether something exist already or give us a direction how to proceed?
    Thanks in advance,
    Pascal Decock

    You use Assembler for this purpose.
    1) Assembler can be accessed through LC Java API. See http://help.adobe.com/en_US/enterpriseplatform/10.0/programLC/help/index.html
    API Quick Starts (Code Examples) > Assembler Service API Quick Starts
    2) Last week I posted on generating and merging PDF's from PostScript. Take a look at the assembly service instance in the .lca. Assembler uses DDX (Document Description XML) to describe document construction. NOTE the .lca was developed with ES 3 (aka ADEP). The .lca It contains the most basic DDX.
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="out.pdf">
      <PDF source="inDoc1"/>
      <PDF source="inDoc2"/>
    </PDF>
    </DDX>
    http://forums.adobe.com/message/4019760#4019760
    DDX Reference at http://help.adobe.com/en_US/livecycle/9.0/ddxRef.pdf
    Steve

  • How to merge multiple live audio streams into a single stream in FMS?

    I need to merge multiple live audio streams into a single stream so that i can pass this stream as input to VOIP through a softphone.
    For this i tried the following approach:
    Created a new stream (str1) on FMS onAppStart and recorded the live streams (sent throgh microphone) in that new stream.
    Below is the code :
    application.onAppStart = function()
    application.myStream=Stream.get("foo");           
    application.myStream.record();
    application.onPublish = function (client,stream)
          var streamName = stream.name;
          application.myStream.play(streamName,-2,-1};
    The problem is that the Stream.play plays only 1 live stream at a time.As soon as a the 2nd live stream is sent to FMS then Stream.play stops playing the previous live stream.So,only the latest live stream is getting recorded.Whereas i need to record all the live streams in the new stream simultaneously.
    Any pointers regarding this are welcome.
    Thanks

    well i tried this once for one of my scripts and the final conclusion is its not possible to combine two streams into 1.....how would you time/encode the two voices......there is no know solution to this in flash. If you continue on despite me and find a solution please post it so we can explain to rest of world.

  • How to merge multiple spools in one PDF

    hi all,
    i have a requirement to merge multiple spools into one PDF.
    I have the code to merge 2 spools into one PDF but acc to my requirement this number can be any( say 100). hence i need  help to merge N number of spools in one PDF.
    Regards
    geeta gupta

    Take the data of all spools into a internal table then create a new spool with this data then downlad this data into pdf format.
    By this method you can download any number of spools into a single pdf file. Please see the below code
    Fetch spool number
    Select rqident from tsp01 into table g_t_data
    where...............
    Read sool data and take this data into a internal table
    Loop at g_t_data.
               Call program to read spool as follows
          SUBMIT rspolst2 EXPORTING LIST TO MEMORY AND RETURN
          WITH rqident = g_t_data-rqident
          WITH first = '1'
          Read memory where spool data is stored
          CALL FUNCTION 'LIST_FROM_MEMORY'
               TABLES
                    listobject = mem_tab
          Convert spool data to Ascii
          IF NOT mem_tab[] IS INITIAL.
            CALL FUNCTION 'LIST_TO_ASCI'
                 EXPORTING
                      list_index         = -1
                 TABLES
                      listasci           = g_t_text1(table type c length 10000)
                      listobject         = mem_tab(LIKE TABLE OF abaplist)
            APPEND LINES OF g_t_text1 TO g_t_text.
          ENDIF.
    ENDLOOP.
    Create new spool with internal table data
      NEW-PAGE PRINT ON
      KEEP IN SPOOL  l_keep(variable type c default u2018Xu2019)
      LINE-SIZE      300  
      LIST NAME      l_list (variable(30) TYPE c default 'combined_pdf')
      NO DIALOG.
      LOOP AT g_t_text.
        WRITE: g_t_text-data.
      ENDLOOP.
      NEW-PAGE PRINT OFF.
      COMMIT WORK.
    Fetch this spool number from TSP01
    SELECT rqident rqcretime FROM tsp01 INTO TABLE l_t_pdf(internal table having two fields rqident LIKE tsp01-rqident and rqcretime LIKE tsp01-rqcretime)
      WHERE   rqowner = sy-uname AND
                     rq2name = 'COMBINED_PDF'.
    Download spool data into pdf format
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                src_spoolid   = l_t_pdf-rqident
           IMPORTING
                pdf_bytecount = l_size(variable type i)
           TABLES
                pdf           = g_pdf(table like table of tline)
      CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
                bin_filesize = l_size  "size
                filename     = l_data
                filetype     = 'BIN'
           TABLES
                data_tab     = g_pdf.
    Hope this will help you.

  • How to merge multiple documents via command line (Adobe Acrobat Pro 9.3.2)?

    I'm searching solutions to merge multiple documents (all stored in one folder) via command line or batch file to a single PDF-File...
    Is there a way to do this?
    Finaly I want to control this from a application written in MS-Access. So, perhaps there are some features already integrated in Access to do this?
    Thanks for answer!

    If you have some programming experience you could probably do this using VBA from within MS Access to control Acrobat via OLE.
    Lots of examples on the Web.
    Hope this helps

  • How to merge multiple PDFs and display in a new window

    Hi,
    I'm trying to merge multiple PDFs into one PDF and display the output in a new window using PeopleCode. I have a button on a page, which when clicked should open a new window with the merged PDFs. I am able to succussfully merge the PDFs using the PDFmerger class (mergePDFs) but unable to display the result in a new window.
    Please help.

    Thanks.
    I also found this piece of code very helpful.
    Local PSXP_RPTDEFNMANAGER:Utility &oUtil;
    Local boolean &bRtn;
    /* send the output to client */
    /* &sFileName = the file path /file_name.extension */
    &oUtil = create PSXP_RPTDEFNMANAGER:Utility();
    &bRtn = &oUtil.zipAndViewAttachment(&sFileName);
    Edited by: user8260115 on Sep 9, 2009 4:57 PM

  • How to Merge Multiple Calendars?

    Somehow I have managed to end up with 11 different iCloud calendars.   I would like to merge them to one or two calendars.  I tried deleting the calendar but then I get a message saying if I delete the calendar, all of the events associated with that calendar will be deleted, which I don't want to do.  Suggestions?
    I think that as a result of the multiple calendars, I have multiple holidays showing up on my calendar.  For example, St. Patricks days shows up twice.  This clogs up my calendar with unnecessary events.  How to I reduce the holidays to one?

    Thanks for the response, but it now has created a bigger problem.  I was able to follow your instructions on two of the calendars and it worked well.  However, on the third calendar, in importing the exporting ics file into the calendar I want to keep I get the following error: 
    "The server responded with an error.  The event "xxx event" was rejected by "iCloud" because it already exists".
    I then get three options:
    1) Ignore
    2) Try Again  (The same error message occurs)
    3) Revert to Server (I have no idea what this means - but when I click it, nothing seems to happen)
    There doesn't seem to be a way to get out of this import activity and error messages.  I have to Force Quit the program to stop.  I have tried restarting the computer and the same thing occurs.  Now I can't use iCal (although if I go into my iCloud calendar on Safari - that works).
    I suppose I could continue to click on Ignore and eventually it would go through all of the duplicate entries.  However, there is probably 10 to 15 years of entries.   There could thousands if not tens of thousands of entries.
    Any suggestions?   Maybe I will sit down for a long movie and click on "Ignore" several thousand times and that will solve the problem! 

  • How to Merge multiple XML  files in one file ( Env: XML Publisher 5.6.2)

    All,
    I have recently started working on XML publisher and have developed 3 reports in last 2 days using XML Publisher and integrating them with Concurrent programs.
    This is a great tool.
    I have got another requirement, where i need to use xml file generated by multiple run of same report with various parameters and then merge all xml file to a single report. Developing the whole custom process will take very long time and sure will have bugs in it. Instead i was thinking to use xml file generated by Oracle report itself.
    Report "US Gross to net summary" generates xml output in standard output directory and then show output in PDF file. I have 7 such file generated for each payroll. I want to merge output of xml into a single xml so that i can create single report having data from all 7 xml files showing me All payroll output in a single report.
    Can someone please guide me , how can i read xml file data from the output directory of a seeded concurrent program and how to manipulate data in it.
    Thanks
    Ankur

    Hi Tim,
    Thanks for replying. I have looked for "PDFBookBinder class" in xml publisher user guide for ver 5.6.2. I didn't get any reference of this text. Can you please guide me to a tutorial/link where i can get more information about this class.
    Also, i originally thought of similar to your second logic, as my design basis. Oracle process generates the xml file in output directory which i can get. What i didn't get is how do i "pick them up and merge" using publisher. Also, is there way to do this merging process using pl/sql ? Can you please give little more information on your second approach.
    My original plan of action is that i will create a report set in which i will call oracle seeded report for all 7 payrolls in a sequential manner. Then using the child requests of the report set i will get to 7 xml files generated by seeded oracle process. Then the piece i am not sure of , i will use those 7 files to generate a single xml file having payroll name as tree top for each output. Once single xml is ready, i can easily design a template and register the process to generate output as Excel.This process will not require me to actually change any data or do any calculation. It will only reformatting the feilds we see and abiity to see all 7 payroll at one time rather then entering these numbers manually into an excel to do analysis.
    Please provide your feedback, if you think above plan is not feasible or need corrections.
    Best Regards,
    Ankur

  • How to make multiple MobileMe accounts work in iCloud?

    I have 2 MobileMe accounts.  One is an old @mac.com that I use strictly for e-mail.  The other is my current @me.com (with an alias @me.com address) that I use for everything including iTunes store account.  I've already moved my @me.com account to the cloud.  Here are my questions:
    Do I move the @mac.com to the cloud on my iMac?  Will it override any calendars, contacts, etc.?  I want to add it to my iOS devices as well (iPhone and iPad at least).  I see under accounts on my iPhone I can add an iCloud account, but can I add it without compromising all the data from my @me account?
    Do I have to do anything to the alias account to move it?  Will it go away if I do nothing once MobileMe goes away?
    Thanks for any help.
    Kellye

    Kellye...
    Hopefully these support articles will help.
    Creating an iCloud account: Frequently Asked Questions
    MobileMe: Email aliases can no longer be added, changed, or deleted

  • How to merge multiple iPhoto libraries on one Mac

    When I (option+click) on iPhoto I see 3 libraries to choose from. I don't know how I got them but I want to merge all 3 into a single library. How do I do that? I downloaded iPhoto library manager already but from there I am lost.

    You'll need to purchase it.
    Then check the instructions here - 6.4...
    http://www.fatcatsoftware.com/iplm/Help/table%20of%20contents.html

  • Tips on how to organize multiple iCloud calendars in iCal 5.0

    Found some workarounds but looking for tips from others since I have not been using Lion and the new iCal very long.
    Situation:
    I use iCal for work and have my own calendars and manage my boss's multiple calendars. An upgrade to Lion has thrown a monkey wrench as we now have to use iCloud to have read/write access to the calendars. The new look of iCal is very cluttered with all of these entries and color coding is not enough to be easy on the eyes to differentiate what is what. The new simplified look hides the master list of calendars which acted as a legend. Now in order to figure out what calendar an entry belongs to, I have to click to reveal the list of calendars and make a guess (due to the # of calendars the colors are used more than once) or click on the item and then edit for the details. The list of calendars is not very helpful as everything is under iCloud, both mine and the boss's, with no indication as to which belongs to whom. The shared icon being visible is a clue but not that much help. A subgroup automatically created by AppleID or the ability to create an iCloud group would be very useful.
    Work arounds:
    Leaving the inspector open helps eliminate 1 click so now I don't have to click on edit to reveal which calendar and entry belongs to.
    To make the calendar list more manageable, I manually reordered the calendars and renamed each one of my boss's calendars with their name on it.
    Tips for those that have to deal with supporting someone who deletes entries without telling you:
    I maintain a travel calendar for the boss and put the details of their trip (such as hotel information) into the entry but as their travel decisions are erratic, they often delete these entries when they decide not to travel for work then later notify me to cancel the hotel but the information is lost since they deleted the entry. Frustrating. I could keep a copy elsewhere, such as email, text file, etc, but I prefer the organization of a calendar. I created a duplicate calendar on my end that they do not have access to where I copy and paste each entry of their calendar into mine. This way, when they delete an entry in their calendar, I still have the trip info. I'm curious for those that deal with this sort of thing, is this the best practice? For example, is there a way to auto duplicate or create multiple entries without copy and paste? (For now, iCal does not appear to let you put the same event on multiple calendars.)
    Does anyone have any other tips for organizing multiple calendars, especially in this sort of situation where you are dealing with the calendars of others? I would really like the month view or week view to be more understandable. The color coding just isn't enough. Is there a way to put the title of the calendar to appear in the entry for week/month view?

    I just transfered all of my data over to iCloud today.  I run a summer college program and I had all of my calendars neatly ordered on my computer under Calendar Groups - and color coded.  It was a bit frustrating to see that I would not be able to organize them in this way on iCloud.  I like your ideas - they were helpful.  I hope they update and improve on this for us!

  • How to merge multiple responses in EBS

    Hi Everyone,
    I have been currently working on POC where Mediator EBS Service needs invokes multiple Provider ABCS to search for Item in System A and System B.
    Result from both the Providers should be combined and should be sent out as one message to the Requester ABCS.
    Can this be achieved through Mediator Service ?
    Thanks in Adavance

    Hi Gerhard,
    So in the case of EBF, EBF is not allowed to communicate with either of the ABCS. As per the deisgn flow suggested above, we can orchestrate and invoke both the system EBS and receive the response from Prov A & prov B. Similarly it would merge the results in whatever way and create the final response EBM that is passed back to the ReqABCS.
    Here comes my question. Can the EBF send the final response EBM directly to Req ABCS. It should have another mediator to do this rite??
    So it should be like as said above,
    Req ABCS - EBS(route to EBF) - EBF - EBS1( sys1) - Prov ABCS 1
    Req ABCS - EBS(route to EBF) - EBF - EBS2( sys2) - Prov ABCS 2
    So Req ABCS-1
    Generic EBS - 1 ( to route the EBM to EBF.. This will also get the response EBM back from EBF.)
    EBF -1 ( bpel process to orchestrate to multiple EBS)
    EBS 1(sys1)
    EBS 2(sys2)
    Prov ABCS - 2 ( sys1 & sys2)
    Do correct me if im wrong.
    Regards,
    Rahul
    Edited by: Rahul Somasundaram on Sep 7, 2010 1:04 AM
    Edited by: Rahul Somasundaram on Sep 7, 2010 1:05 AM

  • How to sync multiple iPhone calendars with Google calendars?

    Hi
    I have an iPhone 4S with 5 different IOS calendars setup on it.  I have linked my iPhone 4S to Outlook calendars via iClouds so when I update any of the calendars it successfully updates all the calendars in Outlook.  I now want to be able to sync all my 5 IOS calendars with Google Calendar - I don't mind not being able to 2-way sync and don't mind Google calendar being read only but I DO want Google Calendar to keep updated with any changes I make on my IOS calendars. 
    I've currently got my gmail account on my iPhone as a CalDav account but it only updates the primary IOS calendar.  I want to be able to sync all 5 IOS calendars to Google calendar and keep it updated.  How do I do this?
    Thanks
    Amanda

    Read here:
    http://support.apple.com/kb/HT5209

Maybe you are looking for

  • IS THERE ANY TRICK TO CONNECT THE MACBOOK AIR TO A VGA PROJECTOR? (I HAVE PROPER APPLE CABLE)

    Is there any trick to connect the macbook air to a vga projector? (I have the Apple right cable). I'm a professor in Brazil and just starting using the macbook air...

  • I need advise on a scanner

    I need a simple flat bed scanner for mostly copying documents and some photos and see a good deal on the Canon CanoScan Lide 100 scanner.But i am not sure if it will work with my iMac OS X 10.6.2 Snow Leopard.Anybody is using this scanner on the same

  • Illustrator - Can't open files

    Attempting to open various files, all .ai type but my Illustrator just hangs and i i have force quit. Any ideas what i could try? Thanks Dean

  • How to use the Ip4s with another carrier network?

    Hi, I bought an IP4S from Walmart without contract (original price). Can I use the Tmobile on it? If not, how can I do? Thanks,

  • IPod won't work?

    My iPod touch won't charge or connect to itunes, when i turn it on it shows the apple logo then goes off again. I've charged it for hours and it still won't work, i also tried everything on the Support suggestions for a unresponsive iPod touch. Any s