Copy a recurring event to second calendar

I've created a recurring event, which I have also modified - meaning I have deleted a couple of recurrances. Now I want to copy that event to a public calendar, but still want to keep it in my own calendar as I usually have the public one turned off, as there are a lot of events in there which are not important to me.
When I move the event without copying, it works perfectly, but when I try to copy the event, iCal only lets me copy one recurrance. Is there a trick to copy the whole event?
Or is there a way to see only specific events of a calendar? If it was possible to only see one event of a calendar I'd be happy, too.
I'm using Version 4.0.4 (1395)

Found a way: first create a test calendar, move event to test calendar, then export said test calendar and then import test calender into as many other calendars as you like.

Similar Messages

  • How can I copy and paste events in the calendar?

    Does anyone know how to cut and paste or copy and past events in the calendar?  The events happen at different times and on different days so I can't just "repeat".  Thanks in advance!

    Ignore MJG196 post.
    In Calendar, tap the event, tap Edit, then change the Starts date you want the event to move to.

  • TS3999 Why can't I delete a recurring event on my calendar?  Every time I delete it, it show up again within a few minutes.

    Why can't I delete a recurring event on my calendar?  Every time I delete it, it show up again within a few minutes.

    Thank you for your prompt response.
    I did take a look at the Jira issue you referenced. It suggests that the MediaPlayer be set to null in the MediaView after the last media file has been played and nullify the MediaPlayer reference. However, all this relies on GC to cleanup the resources. (In fact, the sample code in Jira shows a call to System.gc(), which, I understand, is not guaranteed to run immediately.)
    All the same, I tried the suggestion, but it didn't help my situation. So I am stuck with my alternative.
    It is rather disheartening that there is not a clear cut API for cleaning up media resources when you are done, instead of being dependent on GC.
    Thanks again.

  • User unable to create recurring events on public calendar.

    As the title says, I have a user that is unable to create recurring events on a public calendar.
    I have given full rights to the user even as owner and it still will not create recurring events.
    I'm convinced its a permissions issue, but have no idea where to look any more. I've temporarily added the user in domain admins just to test, and it works! Why would this fix it? Why is being set as owner of the calendar not enough?
    She just keeps getting "You do not have permission to modify some or all of these items in this folder."

    What rights does she have on the folder?  You might try revoking her rights, then adding them back.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
    Rights were set to Publishing Editor.
    I changed the permissions to none and even removed folder visible. Confirmed she had no access and added them back. Still fails.
    Then removed user account from permissions list, confirmed, added back, tested, failed.

  • How do you schedule 3 week  recurring events in the calendar ?

    How do you schedule an event in the calendar every 3 weeks ? I work a schedule that reoccurs every 3 weeks.

    Unfortunatley there are certain repetitions that the iPad can't create. However if you make them elsewhere and import it onto the iPad, it'll respect it. So if you sync with a computer, make your appointment there and then import that onto the iPad and it'll be on your calendar.

  • AppleScript for recurring events in Outlook calendar

    I'm trying to write an AppleScript that will create a new appointment with properties that are derived from the properties of a specific appointment that is part of a recurring series in an Outlook calendar.
    Outlook 14.2.5
    AppleScript Editor version 2.3
    In the Microsoft Outlook window in the editor, the calendar event help information shows two distinct properties:
    is recurring (boolean, r/o):  Indicates whehter an event is part of a recurring series of events.    (the typo in "whehter" is actually in the help information!)
    is occurrence (boolean, r/o) : Indicates whether an event is an occurrence of a recurring series
    I don't understand the difference between these two.  If I have a series of appointment (say one meeting every day for three days), and I have selected the second appointment in that series, "is occurrence" is false, but "is recurring" is true.  What is the difference?
    My ultimate objective is to extract the start time of the specific appointment that is selected, but when I use the "start time" property of the selection (the second appointment in the series of three appointments), my script is returning the start date/time of the first appointment in the series.
    set selectedEvent to selection
    set startTime to start time of selectedEvent   <-- this is returning the start time of the first appointment in the series - not the start time of the particular occurrence that is selected in the calendar (which is what I actually want)
    Julia Bell

    I'm trying to write an AppleScript that will create a new appointment with properties that are derived from the properties of a specific appointment that is part of a recurring series in an Outlook calendar.
    Outlook 14.2.5
    AppleScript Editor version 2.3
    In the Microsoft Outlook window in the editor, the calendar event help information shows two distinct properties:
    is recurring (boolean, r/o):  Indicates whehter an event is part of a recurring series of events.    (the typo in "whehter" is actually in the help information!)
    is occurrence (boolean, r/o) : Indicates whether an event is an occurrence of a recurring series
    I don't understand the difference between these two.  If I have a series of appointment (say one meeting every day for three days), and I have selected the second appointment in that series, "is occurrence" is false, but "is recurring" is true.  What is the difference?
    My ultimate objective is to extract the start time of the specific appointment that is selected, but when I use the "start time" property of the selection (the second appointment in the series of three appointments), my script is returning the start date/time of the first appointment in the series.
    set selectedEvent to selection
    set startTime to start time of selectedEvent   <-- this is returning the start time of the first appointment in the series - not the start time of the particular occurrence that is selected in the calendar (which is what I actually want)
    Julia Bell

  • How to show next instance of Recuring Event in Calendar List View

    We have a calendar that we are using to display upcoming events.  However we are unable to get a clean output of next instance date for recurring events such as paydays or monthly meetings.  As opposed to showing next instance it shows the date
    the event was originally put in the calendar. 
    I am guessing it will take a custom script, but I don't even know where to begin with that.

    Hi Swen,
    According to your description, my understanding is that you want to display the recurring events as separated events in the calendar list view.
    I recommend to create a Standard View, with Expanded Recurring Events for the calendar list,
    and each instance of a recurring event will be showing in this view.
    More reference:
    http://office.microsoft.com/en-in/sharepoint-server-help/create-change-or-delete-a-view-of-a-list-or-library-HA102774516.aspx#_Toc337729214
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Recurring even in the calendar

    How do you add a recurring event in the calendar that is schedule such as the last Tuesday of the month, or the 3 Thursday of the month?

    Hi,
    Per my understanding, you might want to get all the recurring events within a specific month using C#.
    Here is working code demo about getting recurring events by month for your reference:
    public static void getRecurringEvents()
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    SPQuery query = new SPQuery();
    query.ExpandRecurrence = true;
    query.Query = "<Where><DateRangesOverlap><FieldRef Name=\"EventDate\" /><FieldRef Name=\"EndDate\" />" +
    "<FieldRef Name=\"RecurrenceID\" /><Value Type=\"DateTime\">" +
    "<Month />" +
    "</Value></DateRangesOverlap></Where>";
    //get the events in the specific months
    query.CalendarDate = DateTime.Now.AddMonths(-1);
    SPListItemCollection calendarItems = web.GetList("/Lists/Calendar1").GetItems(query);
    foreach (SPListItem item in calendarItems)
    Console.WriteLine(item["Title"] + ": starts "
    + item["EventDate"].ToString() + " and ends "
    + item["EndDate"].ToString());
    It will return all the recurring events of last month:
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Lighting is now not displaying google recurring events

    after a period in which lightning recently stopped synching with my Google calendars (after more than a year of working wonderfully), I seemed to manage to get things restored. I can add an event in Google and moments later it is reflected in Lightening, and vice versa.
    But my recurring events from prior to the recent disconnect are still showing up in my Google calendars, but are not showing up in Lightning.
    I can create new recurring events in either calendar, and the other calendar reflects it.
    It may be that I simply have to track down and recreate the older recurring events, but I'm hoping for something more certain. :-)
    Thanks,
    David

    Hi Ruplim,
    I am new to this topic and dont really know how to go about this. So can i assume from your post that the oracle apps adapter can subscribe to an event in EBS. If yes, can you tell me how i can do this?
    Thanks

  • Set up recurring event in calendar

    I want to set up an event which happens every second Thursday of each month. If I select monthly it puts it on the same date each month which is not necessarily the second Thursday. I can do this on calendar on my Mac but can't figure out how  to do it on my iPhone 5s with 7.1.2.

    Thanks for responding Chris. I was afraid that it couldn't be done. It,s really a shame as I have many such recurring events each month so Calendar is not of much use to me. I will check out your suggestion about synching. I have my recurring events set up on my Mac calendar and that works fine. I currently don't synch my iPhone with iTunes just copy pics with image capture and do manual backups.

  • Outlook recurring events not showing in calendar

    Syncing my iPhone to MS Exchange.
    I see in Outlook 2010 calendars, all the recurring events I have.
    In particular, I see some birthdays in the current week, but on my iPhone 4s, running IOS 5.1, I only see a couple.
    More explicitly, there are 2 birthdays on the day that I am writing this question, only one shows on the iPhone.
    Also, one for tomorrow does not show, nor does an anniversary 2 days after that.
    There is no obvious reason for some to show and others to not show.
    Additionally, birthdays do not show up in 'Day' view, only in 'List' and 'Month' view.
    I have tried deleting my Exchange account and re-adding it.
    I have changed all birthdays from 'Private' to 'Normal' confidentiality
    I have tried editing events which don't show on the iPhone, in an attempt to make them appear.
    I can see appointments I create on the iPhone, in Outlook within seconds.
    I delete a test appointment in Outlook and it will disappear on the iPhone.
    I am at a loss.
    An explanation, or preferably, a fix, would be appreciated.
    EDIT:
    I found that 'recurring events which are ALL Day Events' do not show on the iPhone.
    However, I can search for the event and find it, even though it does not display!

    Yes, all of my recurring events that do sync were created years ago in Outlook and I had no problem syncing them to my Blackberry Bold way back when. Initially when I got my iphone 4, everything synced both ways and then this year I got an iPad and intitally everything synced with it via iTunes/outlook with no problem. I've only noticed this problem within the last month or so and it drove me crazy. I reset both my ios devices but I refuse to uninstall and reinstall Outlook or iTunes. I've seen tons of posts on here that say it afffects the cloud, exchange servers and itunes so it's not just us. I've sent feedback to Apple and received no response. Others have too. Apple is aware of it and doesn't have a clue what to do about it. It now affects other events for me so I'm thinking maybe it has to do with default reminders and other things between Outlook and the ios devices. Maybe and update to iTunes or ios6 will change that, who knows. I still love my iPhone and would't go back to Blackberry; it's just way to slow for me.

  • Setting recurring events in calendar

    I have an I phone 4. I am trying to set recurring meetings that occur for example; on the second Wednesday of every month. On the repeat selection, there is no option for that. I find this very odd as many professionals have recurring events and meetings that would need to be scheduled this way.
    The only workaround I see is to add it to my desktop Outlook calendar which does have this type of recurring event.

    The easiest way, unfortunately, is to make that kind of recurrance in the calendar app in your computer then sync it to the ipad
    the ipad calendar app handles a lot of repeat patterns, but not that one.

  • Content Query on Calendar does not show recurring events

    There are three views that come with a Calendar list.  One is the 'Calendar', second is 'All Events' and the other is the 'Current Events'.  The current events is a cool view because it expands out items that have a recurrence (such as yearly).  It also shows only the events that happen today or in the future by filtering out past items.
    I have a content query web part that looks to this calendar which is maintained by the HR area.  The calendar is a holiday schedule for the next 3 years or so.  I can not seem to get the recurring events to expand out like they do with the 'Current Events' view.  If I choose 'All Events' on the list then it will show only our recurring holidays and the holidays that can't be set up as recurring holidays.  The content query web part appears to show only the 'All Events' view.
    Is there a way to make the content query web part use the 'Current Events' view?  I know the view option is there when the list resides on the same site, but in that case it uses a 'List View' web part instead of the content query web part.

    I'm not sure the MOSS option will work for me for a couple of reasons.  First, it seems this would require that the list reside on the parent site and the subsite be the one to use CQWP.  I need to have the list maintained on our HR site where HR people have permissions to modify, and then displayed on the parent site where HR folks don't have permissions to modify.  Also, I have at least two different columns that I really need to display and I haven't found a way to keep a link between two fields in the master list, unless I maybe use a calculated field. 
    The CSS modification may be a solution but I have not modified webparts via css.  I really haven't done many modifications to the css anyway but I'm not afraid to try it out on my test system.  I have looked through the Calendar.css and core.css and I don't find anything with ItemStyles in it.  I have even done a search on the entire web server extensions folder and I still have not found ItemStyles.  Will you please let me know where to find ItemStyles.xsl?
    I found a codeplex project that might help with this.  I could at least display two columns.  However, it doesn't say anything about building out recurrence items so I'm not sure if it will fix my problem.  I'll post my findings once I try it out.
    http://www.codeplex.com/ECQWP
    Thanks for your help!

  • My calendar has a daily recurring event that I did not add.  Having problems deleting it.

    I just purchased the iPhone 4 thourgh Verizon.  I was adding an event to my calendar and noticed that every Monday @ 6AM there is a recurring event already on the calendar.  I did not add this.  It goes on indefinitely.  I selected the event and clicked 'delete all future events'.  It worked...but only for a second, then they were all back on the calendar.  I find that if i delete the events individually they stay deleted.  But, as you can imagine, this becomes quite tedious. 
    Any suggestions as to how this is on my calendar and how to delete all at once?

    Please note that Firefox doesn't install Babylon, it's a malware like program that we are actively working on banning.

  • Cannot delete recurring events in calendar

    All of a sudden, with the (TERRIBLE) changes of iOS 7, recurring events will not delete or be changed. Each time I try to delete or even change an event, it walks through the correct process tellingme that it is a recurring event and asking if I want to delete just this one or all future events. I say all future. All's good. It goes away. then 5 seconds later it shows up again!  Same thin when I try to edit or move an event. I have tried on all my devices  to delete the same event -- it always returns!
    I am running iMac intel with OS X 10.9
    iPhone & iPad iOS 7
    and I am at a loss as how to do it differently.
    I found on earlier sites to put " sudo chmod -a# 0 ~/Library/Preferences/ into terminal -- but Termal came back with "
    chmod: No ACL present '
    Any thoughts?  Anyone else having this problem?

    Is this a synced calendar or just on the phone?
    For a synced calendar, you will need to go to the Settings App > Mail,Contacts,Calendar and remove it from there.
    For a calendar on the device, open the calendar app > Calendars > Seelct the calendar(s) in question (tap on the blue arrow to the right) > scroll down and tap Delete Calendar.
    You might find the user guide helpful: http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Message was edited by: James Ward4

Maybe you are looking for

  • Runtime error in Power set program

    I don't understand what's wrong here so if anyone could help, I'd appreciate it. Thanks. Runtime error: Exception in thread "main" java.util.ConcurrentModificationException      at java.util.HashMap$HashIterator.nextEntry(Unknown Source)      at java

  • Cost of sales in NEw GL

    Hi, Can anybdoy please let me know what is the Cost of Sales ledger functionality in New GL account in ECC 6.0? I tried to find out from our forum list but there is no particular specification on that. Or if any body can send me the good documentatio

  • I want to display a message like

    The one in c#, or windows programming environment. Is it possible? A dialog box should appear when needed and display a message. How can I achieve that? Thanks in advance. Regards. Deniz.

  • How to give permission to Internal client local admin rights to install applications

    Dear All, I want to give internal client rights to install application in his computer. At the same time I don't want him to login to windows server 2008 with admin rights. Could you please let me know how to do that?

  • Exception is thrown after substituting Oracle standard VO

    Hi All , I wanted to change the query for the particular view object in an OAF page of Oracle application . So I downloaded that VO from $JAVA_TOP directory . And created a new customized VO and a substitution . Then I migrated the VO xml file, java