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

I need to create a label for a mont

Status
Not open for further replies.

JM3482

Technical User
Nov 7, 2003
17
0
0
US
I need to create a label for a monthly date range in a report, but I am not using any date parameters or date formulas. I checked out special fields area and did not find anything workable. I would need to show the previous month date from and date to (10/1/2003 - 10/31/2003). I do have fields like "eff_start_date" and "eff_end_date" but am not using that field in any formulas or parameters.
 
Hi
try using currentdate - 30

cheers

pg

pgtek
 
Create a formula called @LastMonthRange and use the following:

Minimum(LastFullMonth) + " - " + Maximum(LastFullMonth)
 
rhinok's formula will work if you change the "+"s to "&"s:

Minimum(LastFullMonth) & " - " & Maximum(LastFullMonth)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top