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!

Finding out dates in a system date

Status
Not open for further replies.

Acydman

IS-IT--Management
Nov 18, 2004
52
0
0
GB
I am running a date range that is last full week, how cani find out the Start date and End date in a formula
 
Create a formula:

//@DisplayDateRange
"Date Range: " & minimum(lastfullweek) & " - " & maximum(lastfullweek)

You can seperate them out into seperate formulas if need be.
If you need to format the dates in the formula to a specific format, use the totext function:

totext(minimum(lastfullweek),"MM/dd/yyyy")

~Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top