Formula to capture LastFullWeek Last Year (1 Viewer)

PeterOC

Registered User.
Local time
Today, 11:01
Joined
Nov 22, 2007
Messages
80
I've been wracking my brain trying to solve this problem:

I've got a report where I want to show a count of jobs raised for last week but I want to compare it to the same week Last Year.

I've done a bit of searching and the nearest I can get is this:

({table.JobRaisedDate} in dateadd("yyyy",-1,minimum(LastFullWeek)) to dateadd("yyyy",-1,maximum(LastFullWeek)))

But this doesn't work because it's taking the start of the last full week this year and just subtracting a year.

Any help would be mucho appreciated.

P
 

amerr01

New member
Local time
Yesterday, 20:01
Joined
Apr 8, 2011
Messages
1
({table.JobRaisedDate} in dateadd("yyyy",-1,minimum(LastFullWeek)-1) to dateadd("yyyy",-1,maximum(LastFullWeek)-1)) worked for me... you were almost there.
 

Users who are viewing this thread

Top Bottom