Show a date on a Report

  • Thread starter Thread starter Bob V
  • Start date Start date
B

Bob V

Looking to show the Date in a 2 different text box on my report, If I get
these 2 I will work the rest out
1st Day of this month and the first day of next month 1-Jan -2008 and 1-
Feb - 2008
Thanks for any help.....Bob
 
For the first day of this month try this formula in a text box:

=DateSerial(Year(Now()),month(Now()),1)

For the first day of next month try this formula in a text box:

'=DateSerial(Year(Now()),Month(Now())+1,1)
 
Or try this ---
For the first day of this month try this formula in a text box:
=Date()-Day(Date())+1

For the first day of next month try this formula in a text box:
=DateAdd("m",1,Date()-Day(Date())+1)
 
Brilliant guys thanks for your help, What if Back to 1st of the Month , then
back to first Monday is that possible
Regards Bob
 
Bob V said:
Looking to show the Date in a 2 different text box on my report, If I get
these 2 I will work the rest out
1st Day of this month and the first day of next month 1-Jan -2008 and 1-
Feb - 2008
Thanks for any help.....Bob
 

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