Start day for global agenda week view

Does anyone know if there is a way to change the first day of the week for the global agenda week view? For example, instead of having the week start on Monday, it starts on Sunday.

Hi Christopher,
The WEEKDAY function allows specifying either Sunday or Monday as the first day of the week:
WEEKDAY
The WEEKDAY function returns a number that is the day of the week for a given date. WEEKDAY(date, first-day)
  date:  The date the function should use. date is a date/time value. The time portion is ignored by this function.
  first-day: An optional value that specifies how days are numbered.
Sunday is 1 (1 or omitted):  Sunday is the first day (day 1) of the week and Saturday is day 7.
Monday is 1 (2):  Monday is the first day (day 1) of the week and Sunday is day 7. Monday is 0 (3):  Monday is the first day (day 0) of the week and Sunday is day 6.
But I think you are referring to the first day of the 'workweek', for which I do not see a means of defining a custom value.
Since you want to 'insert categories', though, you could easily define your own, using WEEKDAY(date) or WEEKDAY(date,1), plus an IF statement to return the category label appropriate to the day. Here's one for a Sunday to Thursday work week. Dates are in column A, the formula is in whichever column you want as the Category column. For the example, I've placed it in column B.
B2, and filled down: =IF(WEEKDAY(A)<6,"Work","Off")
The top table shows the weekday numbers returned for each day of the week for each of the three permitted values for the optional second argument. The bottom table shows the results from the formula above, used to define a category label for each date:
A10 was left blank intentionally, to determine if the lack of data resulted in an error. The Warning message, flagged by the blue 'warning' triangle, is "The formula uses a number in place of a date." The 'date' assigned to this numerical value of zero was a Friday, but I'm not certain when. Probably best to avoid extra rows with no date shown.
Regards,
Barry

Similar Messages

  • How can I see more than 6 all day events in the week view without scrolling?

    How can I see more than 6 all day events in the week view without scrolling?  I need to see all of my all day events at once.  I use this for scheduling and comparing of # invoices.  Going back and forth to scroll is cumbersome.  I just want to be able to expand the top section so I can see everything at once.

    Any ideas, anyone?

  • Is there a way to change the start day for the week?

    So I really like the "Insert Categories from the following" functionality of the Reorganize tool, and I fell in love with it's ability to break down by date automagically. I've encountered one problem with my use of it, though: I start my "work week" on Sunday, and it defaults to Monday as the first day of a week without any seeming way to change it to Sunday. Is there a way to do this?

    Hi Christopher,
    The WEEKDAY function allows specifying either Sunday or Monday as the first day of the week:
    WEEKDAY
    The WEEKDAY function returns a number that is the day of the week for a given date. WEEKDAY(date, first-day)
      date:  The date the function should use. date is a date/time value. The time portion is ignored by this function.
      first-day: An optional value that specifies how days are numbered.
    Sunday is 1 (1 or omitted):  Sunday is the first day (day 1) of the week and Saturday is day 7.
    Monday is 1 (2):  Monday is the first day (day 1) of the week and Sunday is day 7. Monday is 0 (3):  Monday is the first day (day 0) of the week and Sunday is day 6.
    But I think you are referring to the first day of the 'workweek', for which I do not see a means of defining a custom value.
    Since you want to 'insert categories', though, you could easily define your own, using WEEKDAY(date) or WEEKDAY(date,1), plus an IF statement to return the category label appropriate to the day. Here's one for a Sunday to Thursday work week. Dates are in column A, the formula is in whichever column you want as the Category column. For the example, I've placed it in column B.
    B2, and filled down: =IF(WEEKDAY(A)<6,"Work","Off")
    The top table shows the weekday numbers returned for each day of the week for each of the three permitted values for the optional second argument. The bottom table shows the results from the formula above, used to define a category label for each date:
    A10 was left blank intentionally, to determine if the lack of data resulted in an error. The Warning message, flagged by the blue 'warning' triangle, is "The formula uses a number in place of a date." The 'date' assigned to this numerical value of zero was a Friday, but I'm not certain when. Probably best to avoid extra rows with no date shown.
    Regards,
    Barry

  • Need to display days for every "X" weeks

    I have start and end dates, along with specific days of the week that I'm outputting.
    However, I need to display them every "X" week but I'm not sure how to do that.
    For example: show Monday, Wednesday, and Friday for every 2 weeks (or every 3, 4,5 weeks).
    Can someone shed some light?
    TIA

    Another option, depending on what you are really trying to do.
    Loop from day A to day B.
    If current itteration of the day is a designated day of the week [dayOfWeek(currentDay)] do one thing, else do another.
    If current itteration of the day is the end of the week [I.E. dayOfWeek(currentDay) is 7] then break the display to a new week.
    There are probably other ways to do this as well.  The date time functions could probably give you some ideas.
    http://livedocs.adobe.com/coldfusion/8/htmldocs/functions-pt0_05.html#1098968

  • Getting the Last day for a given week number

    Dear Gurus,
    I want to find the Last day of a given week number.
    Can anyone help me out.
    Regards
    Madhu K

    Here I dont want to pass date,
    If I give Week Number, Can I get that Week Numbers
    Last date and First Date.
    test@ORA10G>
    test@ORA10G> -- this query fetches the start and end dates for a specified week in the current year
    test@ORA10G>
    test@ORA10G> select
      2    wk as week,
      3    min(dt) as start_date,
      4    max(dt) as end_date
      5  from (
      6    select
      7      trunc(sysdate,'yyyy')+level-1 as dt,
      8      to_char(trunc(sysdate,'yyyy')+level-1,'ww') as wk
      9    from dual
    10    connect by level <= trunc(add_months(sysdate,12),'yyyy') - trunc(sysdate,'yyyy')
    11  )
    12  where wk = &week_number
    13  group by wk;
    Enter value for week_number: 1
    WE START_DAT END_DATE
    01 01-JAN-08 07-JAN-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 23
    WE START_DAT END_DATE
    23 03-JUN-08 09-JUN-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 52
    WE START_DAT END_DATE
    52 23-DEC-08 29-DEC-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 53
    WE START_DAT END_DATE
    53 30-DEC-08 31-DEC-08
    test@ORA10G>
    test@ORA10G>pratz
    can be shortened further:
    test@ORA10G>
    test@ORA10G> select
      2    to_char(trunc(sysdate,'yyyy')+level-1,'ww') as wk,
      3    min(trunc(sysdate,'yyyy')+level-1) as start_dt,
      4    max(trunc(sysdate,'yyyy')+level-1) as end_dt
      5  from dual
      6  where to_number(to_char(trunc(sysdate,'yyyy')+level-1,'ww')) = &week_number
      7  connect by level <= trunc(add_months(sysdate,12),'yyyy') - trunc(sysdate,'yyyy')
      8  group by to_char(trunc(sysdate,'yyyy')+level-1,'ww')
      9  /
    Enter value for week_number: 1
    WK START_DT  END_DT
    01 01-JAN-08 07-JAN-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 53
    WK START_DT  END_DT
    53 30-DEC-08 31-DEC-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 23
    WK START_DT  END_DT
    23 03-JUN-08 09-JUN-08
    test@ORA10G>
    test@ORA10G> /
    Enter value for week_number: 14
    WK START_DT  END_DT
    14 01-APR-08 07-APR-08
    test@ORA10G>
    test@ORA10G>Message was edited by:
    pratz

  • Multiple All Day Events Missing in Week View

    Hello,
    I just got my first BB a Curve 8900 and am very impressed.
    The only thing I don't like is that if I have more than one all day event on a particular day, in Week View I can't see them.
    (I've used a variety of other phones/PDAs over the years and this is not normally an issue)
    I've googled this and haven't found much relating to it, other than people not seeing all day events on the home screen or something.
    Is this a BB 'feature'? Is there a work around?
    I'd like to be able to see my week ahead at a glance and don't seem to be able to.
    Thanks in advance. 

    Hello RobertBL,
    I have the same problem. In week view i only see 1 event on days with multiple day events. I use firmware version 4.6.1.152 (platform 4.2.0.91). My Curve 8900 is T-Mobile branded (Netherlands). Until now i haven't found a work around. In other calendars (pocket informant and Agendus) i don't have this problem in weekview, so it must be a BB firmware bug.
    Greatings
    Message Edited by maccloud on 05-06-2009 09:50 PM

  • No days or dates in weekly view

    Just recently my iCal in weekly view hasn't shown the days of the week and the dates either. I have gone thru everything in the prefs and the menus and cannot find anything to bring them back.

    It appears that that is a change in '11
    LN

  • Expand "all day" pane size in week view

    In Mountian Lion's Calendar, the week view shows the all day events in a narrow pane aong the top of the calendar window. However this pane is fixed and can't be resized to show more than 3 all day events. Does anyone have any tips or suggestions on how to change the size of this area?

    Hello RobertBL,
    I have the same problem. In week view i only see 1 event on days with multiple day events. I use firmware version 4.6.1.152 (platform 4.2.0.91). My Curve 8900 is T-Mobile branded (Netherlands). Until now i haven't found a work around. In other calendars (pocket informant and Agendus) i don't have this problem in weekview, so it must be a BB firmware bug.
    Greatings
    Message Edited by maccloud on 05-06-2009 09:50 PM

  • How do you fix this?:  When I sign in to Facetime on my Macbook Pro it says: "Our Servers Cannot Process your Request. Please try again later."   I have tried again "later" every day for almost 3 weeks and it doesn't work. How can I fix this?

    As I stated above, There is a Facetime error. can someone please help?

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

  • I cannot open my banking page or open PDF's from any mozilla browser. All of my applications work fine in Internet Explorer. This has only started happening for the last week or so.

    Whenever I try to access my banking information on firefox it only downloads a small portion of the display page. Also, when I try to open a PDF nothing happens when using firefox. I have the latest version of Adobe.

    Hi Chris,
    Well, I tried to delete the Caches and I threw all the .plist files related to microsoft in the trash -- athough I don't know if this is the way to delete files but I haven't found another yet....
    From your other suggestions, it seems to me that you have the impression that I want to stop using Microsoft Office (it was 2007, I made a mistake) though... but this is not the case.
    So... tell me if I misunderstood correctly or if I did anything wrong, or if you have anything else to suggest...
    Thanks a lot anyways!
    Stephanie

  • Publishing Ical in weekly view with start time I want

    I have my Ical set up to start at 11am and end at 9pm. When I publish my calendar it still shows start time at 7am on weekly view. How do I publish my Ical with the start and end times I want?
    Thanks

    epee91,
    What setting do you have in System Preferences...>Language & Region>First day of week:?

  • How to highlight days in Calendar Week view

    I miss the old system of highlighting the current day's column (in "Week View"). It was eye-catching. The red dot doesn't do it for me.
    Is there any way to get that feature back?
    P.S. - I wish Jon Ive would go back to designing hardware. There is such a thing as "over minimization".

    I miss the old system of highlighting the current day's column (in "Week View"). It was eye-catching. The red dot doesn't do it for me.
    Is there any way to get that feature back?
    P.S. - I wish Jon Ive would go back to designing hardware. There is such a thing as "over minimization".

  • Show times in printed week view

    Hey everyone!
    I am a student at a universty in Belgium, Europe and I always print my weekly schedules with iCal. For I always print my schedule in a 5-days week view, the printed schedule doesn't show any start nor end times. But since my lessons start and end at rather odd times (like 10.25AM or 12.35PM), it's rather hard to deduct these exact times from the printed sheet. So I always print my schedule twice; once in list view for the exact times, and once in week view for a better view on the gaps between my lessons, which is rather unpractical.
    Is there any way to show the start and end times in week view when I print it?
    Greets and thanks in advance,
    Gert Milis.

    Never use  "Timezone support";  Settings/MailContactsCalendars/Calendars.
    When the settings are correct in the event, and not corresponding in the display:
    Do a "reset": hold the Power Button and the Home Button at the same time, keep holding, when you see the white apple logo appear, let go and let the 5s start.

  • Calendar weekly view template

    Hello,
    Following a previous thread - Trying to modify the weekly calendar view CSS - I would really appreciate if someone from the development team will publish a skeleton template for the calendar weekly view so will be able to modify it to our needs. I spent a lot of time on it and I'm not getting anywhere.
    Thanks,
    Arie.

    <p class="MsoNormal">Hi,<o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Here is the sample template Attribute values for Weekly and Daily calendar which you can use.<o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">All the class names prefixed with "t1" should be changed with the "t<theme number> which you are using.<o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Example : if you are using theme 2 then class for Month title format will be class="t2WeekCalendarHolder"<o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Weekly Calendar<o:p></o:p></p>
    <p class="MsoNormal">Month Title Format - <table cellspacing="0" cellpadding="0" border="0" summary="" class="t1WeekCalendarHolder"><o:p></o:p></p>
    <p class="MsoNormal"><tr><o:p></o:p></p>
    <p class="MsoNormal"><td class="t1MonthTitle" id="test">#WTITLE#</td><o:p></o:p></p>
    <p class="MsoNormal"></tr><o:p></o:p></p>
    <p class="MsoNormal"><tr><o:p></o:p></p>
    <p class="MsoNormal"><td><o:p></o:p></p>
    <p class="MsoNormal">Day Of Week Format - <th class="t1DayOfWeek">#IDAY#<br>#MM#/#DD#</th><o:p></o:p></p>
    <p class="MsoNormal">Month Open Format - <table border="0" cellpadding="0" cellspacing="0" summary="0" class="t1WeekCalendar"><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Month Close Format - </table></td></tr></table><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Hour Open Format - <tr><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Hour Close Format - </tr><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Day Title Format - <o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Day Open Format - <td class="t1Day" valign="top"><o:p></o:p></p>
    <p class="MsoNormal">Day Close Format - <br /></td><o:p></o:p></p>
    <p class="MsoNormal">Today Open Format - <td class="t1Today" valign="top"><o:p></o:p></p>
    <p class="MsoNormal">Time Title Format - #TIME#<o:p></o:p></p>
    <p class="MsoNormal">Time Open Format - <th class="t1Hour"><o:p></o:p></p>
    <p class="MsoNormal">Time Close Format - <br /></th><o:p></o:p></p>
    <p class="MsoNormal">Weekend Title Format - <o:p></o:p></p>
    <p class="MsoNormal">Weekend Open Format - <td valign="top" class="t1NonDay"><o:p></o:p></p>
    <p class="MsoNormal">Weekend Close Format - <br /></td><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Daily Calendar<o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Month Title Format - <table cellspacing="0" cellpadding="0" border="0" summary="" class="t1DayCalendarHolder"> <tr> <td class="t1MonthTitle">#IMONTH# #DD#, #YYYY#</td> </tr> <tr> <td><o:p></o:p></p>
    <p class="MsoNormal"><o:p></o:p></p>
    <p class="MsoNormal">Day Of Week Format -<th class="t1DayOfWeek">#IDAY# #DD#/#MM#</th><o:p></o:p></p>
    <p class="MsoNormal">Month Open Format - <table border="0" cellpadding="2" cellspacing="0" summary="0" class="t1DayCalendar"><o:p></o:p></p>
    <p class="MsoNormal">Month Close Format - </table></td> </tr> </table><o:p></o:p></p>
    <p class="MsoNormal">Hour Open Format - <tr><o:p></o:p></p>
    <p class="MsoNormal">Hour Close Format - </tr><o:p></o:p></p>
    <p class="MsoNormal">Day Title Format - <o:p></o:p></p>
    <p class="MsoNormal">Day Open Format - <td valign="top" class="t1Day"><o:p></o:p></p>
    <p class="MsoNormal">Day Close Format - <br /></td><o:p></o:p></p>
    <p class="MsoNormal">Today Open Format - <td valign="top" class="t1Today"><o:p></o:p></p>
    <p class="MsoNormal">Time Title Format - #TIME#<o:p></o:p></p>
    <p class="MsoNormal">Time Open Format - <th class="t1Hour"><o:p></o:p></p>
    <p class="MsoNormal">Time Close Format - <br /></th></p>
    Thanks
    JS

  • How do I find the start day of each month

    Hi all,
    Hope someone can give a a hand here I've to do a calender project for college and I'm not allowed to use any built in Java classes so fun all the way so far :-)
    I've got one question that is bugging me at the moment. and that is how to find the start day for each month in a year and store them in an array.
    I'm starting my week at Monday (0) and stopping at Sunday (6) and I do have a formula for discovering the first day in Jan of the given year its
    ((y-1900)*365 + (y-1901)/4)%7
    I was just wondering how I could amend this to find the first day in Feb, March etc.
    Any suggestions greatly accepted.
    Thanks in advance.

    Irish-Student wrote:
    newark maybe I didnt make clear exactly what I want to do.
    I have each day of the week starting at 0 for Monday up to 6 for Sunday I want to map what the start day of a month as a number between 0 and 6.
    The formula I have discovering the first day of Jan of a given year will give you 1 i.e. Tuesday
    what I need to do is find out what number between 0 and 6 the start day of each other month of a given year is.
    For example the 1st of Feb is a Friday which is 4 on the weekday map.
    Your suggestion of 31%7 won't work for this, sorry more than likely my fault for not being clearer in what my requirements were.
    Cheers for the help so far and yep your right not being able to use the built in classes is a pain :-)
    Edited by: Irish-Student on 03-Mar-2008 20:01This doesn't really change much of my first suggestion. If you can already calculate the first day of the month of January for any given year, then there's no problem figuring out the other months. Say I want to know the first day April 1, 1978. You already know how to find January 1, 1978. So find that. Then find the number of days between January 1 and April 1 (remember to account for leap years). Once you have the number of days, you can figure out how many weeks and days that is, and thus what day of the week it is.

Maybe you are looking for