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!

LastFullWeek Starting with Different Week Day 1

Status
Not open for further replies.

mychal

Programmer
Feb 13, 2002
41
0
0
US
I'd like a date range in my CR 8.5 selection criteria that is like LastFullWeek, but instead of Sunday to Saturday, I want Monday to Sunday.

Instead of

{date field} in LastFullWeek,

I would use

{date field} in [{start date} to {end date}].

So for example, if I run the report on Wednesday, August 11th, 2004, the report would display data between 8/2 and 8/8.

How can I do this?

Gracias.
 
You can try this:

{date field} in (LastFullWeek + 1) to (LastFullWeek + 1)

~Brian
 
My bad, psted to quick.

It should be this:

{date field} in (Minimum(LastFullWeek) + 1) to (Maximum(LastFullWeek) + 1)

~Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top