Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
The expression below pulls the most recent week, which includes the current, Im looking to pull the most recent full week, how would I update the expression below to return last weeks count. Thank you.
=Count( {$<EndDateCal = {">=$(=Weekstart(max([Created_On.autoCalendar.Date],1)))<=$(=Weekend(max([Created_On.autoCalendar.Date],1)))"} >} Referral_Number )
to check previous week simply change the period to -1
=Count( {$<EndDateCal = {">=$(=Weekstart(max([Created_On.autoCalendar.Date],-1)))<=$(=Weekend(max([Created_On.autoCalendar.Date],-1)))"} >} Referral_Number )
read more here