making report monthly,yearly and weekly

myranorkama

New member
Local time
Today, 11:12
Joined
Mar 11, 2015
Messages
1
hai.. i'm new at here. can somebody help me. please teach me how to create the report monthly,year and weekly using access 2007??
 
Sorry - I don't think any here will teach you, but we'll help you, if you show what you have reach until now, and explain where you've problems. Please note we are volunteers, not employees!
If you want to get served a runable solution, then I think you have to either hire a programmer or pay for it! :D
 
=TODAY()-30

Thats the base formula I use when trying to get returns that are within 1 month. Try and edit that for your weekly or yearly queries (that are the record sources for reports).
 
Weekly report: DatePart("ww",[yourdatefield])=DatePart("ww",Date()) and Year ([yourdatefield])=Year(Date())

Monthly report: DatePart("m",[yourdatefield])=x Where x is the numerical value for the month you want

Year to Date: Year([yourdatefield])=Year(Date()) and Month([yourdatefield])<=Month(Date()) and Day([yourdatefield])<=Day(Date())
 

Users who are viewing this thread

Back
Top Bottom