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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need a field to show the last day of the previous month 1

Status
Not open for further replies.

farrelm2

Technical User
Oct 4, 2002
18
US
I am using the lastfullmonth function in my report. I will be running the report on the 1st day of every month. On my report, I need to print a field to show the last day of the previous month. For example, I ran the report on Oct. 1, but need the report to read "For month ending September 30, 2002." I need a field to update each month. Any ideas?
 
A formula saying CurrentDate-Day(CurrentDate) should do this.

Naith
 
Hi!

If you want the complete sentence you can write this formula:

'For month ending ' + ToText(Maximum(LastFullMonth),'MMMM dd, yyyy')

/Goran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top