Display the Date not Week Number

G

Guest

Basic question (I hope). I have a report that groups meetings by week -
currently the group header uses this:
=Format$([MeetingDate],"ww",0,0)
Naturally what you see on the report is the week number (like 44, 45, etc..).
What I want dsiplayed is "Week Starting 11/4/2007" "Week Starting
11/11/2007" and so on...
What do I need to do in order to accomplish this?
 
M

Marshall Barton

Peter said:
Basic question (I hope). I have a report that groups meetings by week -
currently the group header uses this:
=Format$([MeetingDate],"ww",0,0)
Naturally what you see on the report is the week number (like 44, 45, etc..).
What I want dsiplayed is "Week Starting 11/4/2007" "Week Starting
11/11/2007" and so on...


If your week starts on Monday, use a group header text box
expression:

=MeetingDate - DatePart("w", MeetingDate, 2) +1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top