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!

Lowest Date

Status
Not open for further replies.

rbvcbr

IS-IT--Management
Mar 4, 2007
58
0
0
US
I have date field, I want to show on the report,
start date (lowest date) and end date(latest date).
Need help with formula please.

Something like, 9/1/09 - 9/18/09.

Thanks,
 
minimum({table.date}) & " - " & maximum({table.date})

Or if you want to format them specifically, use:

totext(minimum({table.date}),"M/d/yy") & " - " & totext(maximum({table.date}),"M/d/yy")

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top