Results 1 to 3 of 3
  1. #1
    Huddle is offline Competent Performer
    Windows XP Access 2010 64bit
    Join Date
    Jun 2010
    Posts
    318

    Weekending Formulas

    I need help in making these read correctly regardless of the day of the week. The weekending day will be Saturday.

    The first formula should show the Saturday of the current week i.e. Date() is 7/6 weekending date would be 7/7.

    ="WEEKLY REPORT FOR WEEKENDING " & Date()-Weekday(Date())

    The second formula should show the Saturday for the next week i.e. Date() is 7/6 weekending date would be 7/14.

    ="Prospective Inspections to be Completed by Week Ending " & Date()-Weekday(Date())+7




    I think the formulas the way I have them Date() would have to be Sunday.

  2. #2
    JoeM is offline VIP
    Windows XP Access 2007
    Join Date
    Jun 2012
    Posts
    3,904
    To return Saturday date for Current Week:
    Code:
    ="WEEKLY REPORT FOR WEEKENDING " & Date() + 7 - Weekday(Date())
    For next week:
    Code:
    ="Prospective Inspections to be Completed by Week Ending " & Date() + 14 - Weekday(Date())

  3. #3
    Huddle is offline Competent Performer
    Windows XP Access 2010 64bit
    Join Date
    Jun 2010
    Posts
    318
    Works great. Thanks

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Get the weekending date from today's date
    By Huddle in forum Access
    Replies: 10
    Last Post: 06-20-2012, 04:05 PM
  2. Query Formulas
    By ShadeRF in forum Queries
    Replies: 8
    Last Post: 12-13-2011, 05:34 AM
  3. Query Formulas
    By ShadeRF in forum Queries
    Replies: 6
    Last Post: 11-15-2011, 10:45 AM
  4. Formulas
    By dunnmel4 in forum Access
    Replies: 0
    Last Post: 03-27-2011, 04:59 PM
  5. Formatting formulas
    By katrinanyc926 in forum Queries
    Replies: 2
    Last Post: 08-16-2010, 07:52 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums