Current Date

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

Guest

In the query i am trying to pull date from today to end of month. What format
should i use for that?
Thank you
 
Try these --
Use Date() for today.
Use DateAdd("m",1,Date()-Day(Date()))
 
Some thing for this criteria i am doing wrong. Please tell me what is wrong?
Between Date() And DateAdd("m",1,Date()-Day(Date()))
 
Try

BETWEEN DATE() AND DATESERIAL(Year(Date()),Month(Date())+1,0)
 

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