Monday of each week

D

DOYLE60

I have a report that lists each week for the year in rows and gives data for
each salesman in columns. The formula in the query for the week is:

Week: Val(Format([Date],"ww"))

The report works but I wish to put the date of each Monday after the week
number.

How should I do that?

Thanks,

Matt
 
M

Marshall Barton

DOYLE60 said:
I have a report that lists each week for the year in rows and gives data for
each salesman in columns. The formula in the query for the week is:

Week: Val(Format([Date],"ww"))

The report works but I wish to put the date of each Monday after the week
number.


Monday: DateAdd("d", 1 - DatePart("w", [Date], 2), [Date])
 

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