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

LastFullWeek Formula 2

Status
Not open for further replies.

jdaily

Technical User
Jan 19, 2004
53
US
Hi All,

I got this formula from Synapsevampire and wanted to know how I would be able to show the actual start and end date of the particular week? For example: Jan. 12, 2004 to Jan. 18, 2004.

BTW: Thanks Synapse for the formula!

synapsevampire (Programmer) Jun 18, 2002
Here's one way:

{MyTable.MyDateField} in minimum(lastfullweek)+1 to maximum(lastfullweek)+1


Thanks in advance!

John
 
Create a formula like this to create your display
Code:
ToText((minimum(lastfullweek)+1),"MMM. dd, yyyy") + " to " + ToText((maximum(lastfullweek)+1),"MMM. dd, yyyy")

~Brian
 
Thanks Brian! This works perfect!

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top