Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

organize dates into weeks

Status
Not open for further replies.

MichaelPReid

Technical User
Dec 11, 2006
14
0
0
US
I have a datasheet that organizes items by date ("mm/dd/yy") and would like to build a query that can count the number of entries by week. How do I build a query that can group/assign into weeks of the year?
 
A starting point (SQL code):
SELECT Format([date field],'yyyy-ww') As Week, Count(*) As NumberOfEntries
FROM yourTable
GROUP BY Format([date field],'yyyy-ww')

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top