date manipulation..get first of month

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

Guest

is there an easy way to get the first day of current month - also need to
then subtract 3 months from that?
thanks!
 
nycdon said:
is there an easy way to get the first day of current month - also
need to then subtract 3 months from that?
thanks!

FirstOfThisMonth: DateSerial(Year(Date()), Month(Date()), 1)

ThreeMonthsAgo: DateSerial(Year(Date()), Month(Date())-3, 1)
 

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