IHow do I set up a recurring day in my calander?

How do I set up recurring events in my calander when they occur on the 2nd Saturday of each month, not every 4 weeks?

Cal>select first Sat your want. Go to recurrance. Every Saturday, relative date.

Similar Messages

  • How do I set up a recurring calender?

    How do I set up a recurring calender that I can export to others for my work. It is a 7 day on, 7 day off roster always starting on Tuesday and ending on Monday. So... to be clear....
    Start Days
    Tuesday 6am to 6pm. repeat for 7 days ending on Monday.
    Off for 7 days.
    Start Nights
    Tuesday 6pm to 6 am. repeat for 7 nights ending on Tuesday morning at 6am
    Off for 7 nights
    Maybe a script would work.
    I am trying to learn how to write this so any expanation would help.
    Thanks for your time and G'day from Australia.

    Hi,
    The iCal interface will not let you add this without creating 14 events that repeat every 4 weeks. iCal can show repeats of events that it is not possible to enter trough its user interface though.
    I wrote the script below to add two events to iCal. You will want to change the settings in the first few lines. Currently it will make events called "Work Shift" in your "Home" calendar  starting at 6pm on the 14th Feb 2012.
    As far as I can see, the minimum number of events to make the repeat you'd want is 2. Each repeats every 4 weeks, for seven days starting on Tuesday. The repeats are set in the recurrence property below using the text from the the rRule variable, (which conforms to the  Internet Calendaring and Scheduling Core Object Specification, but that is more than you possibly need, or want, to know).
    One thing to note is that previous versions of iCal did not display events which spanned midnight correctly and you would not see the part after midnight. This appears to be fixed in Lion.
    There are some additional notes in the script.
    Copy the text below into Applescript Editor, change the settings you want in the first few lines and press Run.
    Best wishes
    John M
    -- John Maisey -- www.nhoj.co.uk -- 12th Feb 2012
    set myCal to "Home" -- change this to your calendar
    set myTitle to "Work Shift" -- change this to the title of the shift event.
    set myDate to current date
    set {year of myDate, month of myDate, day of myDate} to {2012, 2, 14} -- Change to {YEAR, MONTH, DAY, HOURS, MINUTES}
    set rRule to "FREQ=WEEKLY;INTERVAL=4;BYDAY=TU,WE,TH,FR,SA,SU,MO;WKST=TU" -- Don't change this
    tell application "iCal"
      -- set time to 6pm.
              set time of myDate to 64800 -- 6pm (60*60*18 seconds)
      -- Make 12 hour event on this date/time.
      -- Repeats every 4 weeks for 7 days with the week starting on Tuesday.
      make new event at end of events of calendar myCal with properties {summary:myTitle, start date:myDate, end date: (myDate + 12 * hours), recurrence:rRule}
      -- Move start date to 14 days later at 6am,.
              set time of myDate to 21600 -- 6am (60*60*6 seconds)
              set myDate to myDate + 14 * days
      -- Same as above
      make new event at end of events of calendar myCal with properties {summary:myTitle, start date:myDate, end date: (myDate + 12 * hours), recurrence:rRule}
    end tell

  • Possible iPhone bug with custom recurring day schedule?  Need help.

    In Microsoft Outlook I have a 64 day schedule that is set up as single all day recurring events each day. Each day of the 64 day schedule recurrs every 64 days. Day 1 recurrs every 64 days, day 2 recurrs every 64 days, etc., etc.
    When I synced this to an iPhone, each day had an incorrect custom recurring day set at every 18 days. This, of course threw off the whole schedule. After doing some testing, I found out that a custom recurr of 45 days worked, a custom recurr of 46 days told the iPhone it recurred every 1 day. 47 day recurr did the same thing. 48 day recurr told the iPhone it recurred every 2 days, 49 day recurr became 3 days, 50 became 4 days, 51 became 5 days...64 became 18 days.
    Is this indeed a bug with iPhone or is there something I can do for a single 1 day event recurr every 64 days? And, why is there no custom setting when setting up an event on the iPhone?

    ICKIER wrote:
    Is this too complicated for a reply?!
    Apparently, no one has a solution for you. It may be a bona fide bug. You can let Apple know about that:
    http://www.apple.com/feedback/iphone.html.

  • How do I add a recurring event to repeat on the fifth recurring day of the month, for example, an event that only happen on the fifth Sunday of the month for those months that have a fifth Sunday?

    How do I add a recurring event to repeat on the fifth recurring day of the month, for example, an event that only happen on the fifth Sunday of the month for those months that have a fifth Sunday?

    Create one on the first Tuesday, select repeat/monthly and take the option at the bottom.

  • How to set more than one day in calendar?

    Hello.
    Is there a way to set more than one day in calendar and every selected day would create new record?
    Thanks.

    Not without creating your own calendar and maintaining the code to do so yourself.

  • PreparedStatement set date sometimes sets the date one day behind

    I have a PreparedStatement that sometimes sets the date a day behind. I am saving to a MSSQL DB with a field datetime. I have two identical PreparedStatments, one for insert and one for update. When either is executed, it will sometimes set the date back one day. It's not everytime. Every other or every third one, but it's not consistent. Any help would be appreciated.
    ps.setDate(1, Util.parseSqlDate(getParam("CHARGED")));
    public class Util {
         public static java.sql.Date parseSqlDate(String datestr) {
              DateFormat sdf = null;
              if (datestr == null)
                   return null;
              if (datestr.length() > 8) {
                   sdf = new SimpleDateFormat("MM/dd/yyyy");
              else {
                   sdf = new SimpleDateFormat("MM/dd/yy");
              java.util.Date d = null;
              try {
               d = sdf.parse(datestr);
              } catch (ParseException e) {
                   return null;
              if (d != null) {
                   Calendar cal = Calendar.getInstance();
                   cal.setTime(d);
                   return new java.sql.Date(cal.getTimeInMillis());
              return null;
            protected String getParam(String name) {
              return (getParamArray(name)== null) ? null : getParamArray(name)[0];
         protected String[] getParamArray(String name) {
              return (String[])params.get(name);
         }

    traigo wrote:
    The database is a datetime field. Then you should be using the appropriate java jdbc time/date methods to access it rather than strings.
    We are only storing the date portion. Saving with today's date should produce '2009-12-28 00:00:00.000'.
    I just want to set the date to an absolute date (no time value) provided without timezones.Impossible. Since the database datatype is datetime that means that a timezone is always involved.
    And java always uses timezones. Ignoring the problem doesn't make it go away.

  • How to set the defined last day of a month

    Hi, I'm stuck with something. I want to set the desired last day of month to the calendar. How can I do so?
    For example: The last friday of january 2006, the last saturday of june 2005, last monday of december 2012

    set the calendar to the last day of the month (getActualMaximum(..))
    determine the DAY_OF_WEEK of the above (dow1)
    determine the DAY_OF_WEEK you want to set (dow2)
    calendar.add(datefield,-dow1+dow2)
    if(dow2 > dow1) calendar.add(dateField,-7)

  • How to set delivery plan per day in components requirements

    hi
    As we know, the production order of finish goods includes started date and finished data such as Sep 1, and Sep 10. So, MRP calculate component requirement which includes delivery date such as Aug 28 (because of lead time).
    however, purchase people hope to deliver these components day by day. fox example, total delivery Qty maybe is 1000ea. this production order needs to be produced in 10 days. so, the components should also be delivered 100ea per one day.
    however, purchase order just include a delivery date. which have no detailed schedule.
    anybody can tell me how to meet this problem?
    Henry

    Hi,
    The order split is not allowed with the following status:
    Created, delivered, finally confirmed, locked, technically complete, closed, deletion indicator set.
    An order split is allowed with the following system status:
    Partially released, released, partially confirmed.
    Please check and come back.
    Regards,
    R.Brahmankar

  • How can I set up a recurring email text that is sent on demand to specific users?

    I would like to set up an email that goes to specific people and contains the same text every day. However, I don't want the email to be sent automatically in the rare instance I do need to change the text (So the people I am sending it to, subject and text are prefilling and then just needing to hit the send button). Are there settings capable of allowing me to do this?

    That sounds like a template to me.
    http://kb.mozillazine.org/Thunderbird_:_FAQs_:_Using_Templates
    Is that useful?

  • How to set the value of Day in JSpinner of format DD:HH:mm

    Hi All,
    I am trying to implement a spinner of format day:HH:mm but the problem is that I didn't any function by which I can set some dynamic value in Day (for initial display).
    I can set some value in hour and minute by using
    Date fDate = new Date();
    fDate.setHours(hh_int); // hh_int is some dynamic value
    fDate.setMinutes(mm_int); // mm_int is some dynamic value
    but I didn't get any function like setDay(int_value);
    Please let me know how can I do it.

    Take a look at java.util.Calendar.

  • Backup set is over 7 days -- DB status is NOMOUNT -- RESTORE CONTROLFILE

    I'm trying to do a restore of a control file using RMAN.
    After doing a STARTUP NOMOUNT of the database, I try:
    SET DBID = [whatever]
    RESTORE CONTROLFILE FROM AUTOBACKUP;
    The error I get is:
    channel ORA_DISK_1: no AUTOBACKUP in 7 days found
    And that's true. The backup set I'm trying to restore from is over 7 days old.
    I tried
    RESTORE CONTROLFILE FROM AUTOBACKUP UNTIL TIME "TO_DATE('12/17/08 18:00:00', 'MM/DD/YY HH24:MI:SS')"
    and I get the same error.
    All the examples I've seen using UNTIL TIME seem to assume that the database status is MOUNT not NOMOUNT, which is needed if you don't have a control file in the first place.
    How do I get around this problem?
    === Al

    Al,
    Set your env variable oracle_sid = whatever_sid
    then from command line
      c:> rman target /
       or
       $> rman target /
      And use one of the following to list your backups
    RMAN> LIST BACKUP;
    RMAN> LIST BACKUP OF DATABASE;
    RMAN> LIST BACKUP SUMMARY;
    RMAN> LIST INCARNATION;
    RMAN> LIST BACKUP BY FILE;
    RMAN> LIST COPY OF DATABASE ARCHIVELOG ALL;
    RMAN> LIST COPY OF DATAFILE 1, 2, 3;
    RMAN> LIST BACKUP OF DATAFILE 11 SUMMARY;
    RMAN> LIST BACKUP OF ARCHIVELOG FROM SEQUENCE 1437;
    RMAN> LIST CONTROLFILECOPY "/tmp/cntrlfile.copy";
    RMAN> LIST BACKUPSET OF DATAFILE 1;Regards

  • How do I set the Time of Day that a sync will occur?

    Like a lot of Aussies I have an ISP plan that has Peak/Off-Peak hours. What I want to do is have my iTunes do all it's sync/podcast updates at a certain time (say 4AM) when I'm not doing anything else, it's taken from my Off-Peak monthly usage total and leaving me both free bandwidth and Peak time capacity for the month.
    I notice I can set my Podcast updates to check daily, but how does one set the time of the day?

    I believe that when it has attempted to download (or actually downloaded) it automatically schedules the next attempt after the time period. To make it execute your downloads at 4AM, get up at 4AM once and force it to check for downloads, it should schedule the next attempt at 4AM the next day, then the following, etc.
    I would schedule the first download early in the offpeak hours so that if there is any drift in the time, it wouldn.t run into the peak hours.

  • ICloud drive still "setting up" after 2 days

    I installed Yosemite on three Macs the day of release and I noticed that all three automatically turned on iCloud drive. Problem is that after two days, when I open iCloud in Preferences, it still says that iCloud drive is being set up. Meanwhile I have files I need to access on iCloud and I can't reach them. Any suggestions about what I can do? TIA

    I've managed to fix this problem by signing out of iCloud altogether and signing in again.
    In detail, I went into System Preferences -> iCloud, clicked the Sign Out button, clicked the Delete buttons for all the individual apps as their dialogues came up and then signed in to iCloud again using my Apple ID and password. The iCloud Preferences dialogue took a while to process the iCloud Drive 'App' and seemed to generate a lot of network traffic but it eventually displayed an Options button just like all the other iCloud-enabled apps. Note that I had to choose the option to delete all files in iCloud because the only other option was to cancel the operation. (I assumed that cancelled the whole process of signing out of iCloud.) As I wasn't using iCloud Drive before deleting all files wasn't a problem for me.

  • How to set required number of days for the user passwords to expire

    How do I set the duration when users are required to change their passwords?  This is an internal control measure to ensure control over users' logins.
    Thanks a lot.

    You can also set the lifetime of a single password dependent on it's "idle" status:
    - Initial password at user creation. (e.g. 5 days)
    - Reset password by admin. (e.g. 1 day)
    - Productive password not used (e.g 91 days)
    .. and the minimum validity of the password, regardless of how often it is used (not idle).
    - Productive password expiration time. (e.g. 90 days)
    You can also manually observe what is going on via report/transaction RSUSR200.
    If you take a look at the documentation on the parameters in the link already provided, you will see the logic and the dependencies between them. The selection fields of RSUSR200 reflect the same.
    How you rate the risk of passwords and these settings, also depends on many other things - most notably how disciplinced admins are at using the password wizard (in my opinion).
    Cheers,
    Julius

  • How to set reimbursement Accomodation per day not per diem?

    Hi expert,
    is it possible to set calculation of accommodation per diem by calendar day?
    so not counting total night but counting total day?
    As for meals, it is possible to choose for calculation - based on calendar day or 24 hour interval.
    thanks in advance

    hi,
    You are right in standard,  its available for meals not accommodation. You can't define calendar day or hourly per diem for accommodations. 
    Regards,
    Muhammad Umer

Maybe you are looking for

  • What datatype should i use to store imaq image in sql database?

    Hi there i am thinking of saving the imaq image into database for retrieval in my website so that it's like a stream but i don't like what datatype does labview store the image as.

  • Save a string to a file ...my file need a particular file name (time, date, etc)

    hello to all,  i have to save a file with a string..,with results of a test the file name must include time and date of my test, and has to append 2 underscore if my test failed some idea? Using LabVIEW 7.1

  • Why are Folio pages initially blurry and take a few seconds to render?

    Hi. My Folio pages all take a moment to render when viewed on the ipad with adobe viewer, which means they are blurry for a few seconds then they become crisp when they are fully rendered. It really kills the whole feel of my work, making it feel che

  • Develop a program on pocket PC

    Hello I'm develop a program on pocket pc. I think i'll use j2me to develop one. But I don't have any exp on pocket pc or j2me on it. Q. Can Java run on pocket pc? If yes,what is the requirements?(addition d/l or setup any program?) Q. I had an exp on

  • Accented (Hungarian) characters - puzzle.

    Hi all, I have a .csv file with English words and their Hungarian equivalent - the .csv file is fine and appears with the correct accents in both LibreOffice Calc and with gedit and the command line (i.e. $> more my_file.csv) in bash. ===============