How do i show the date on a report in weeks

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a creation date column and when i go to the report it shows all the
dates. i want it to only show the starting week date, and then the next week
after that and so on. i think i have to make a query to do this, but what do
i enter in the field?
 
Your where clause in the query would be (for Week Ending dates I used
Friday, but of course you could select whatever weekday you wanted):
WHERE (((Format([YourDateField],"dddd"))="Friday"));
 

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

Back
Top