Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I'm trying to figure out how to build an expression which does a count of an ID for the past 30 working days. I created a WeekEnd flag but I'm not getting the results I expect:
count(distinct(if(Date >= Today()-30 AND WeekEndFlag = 0,ID)))
I believe this is just omitting weekends in the past 30 days. How can I get the past 30 working days (Mon- Fri)?
Try this:
=count(distinct {<Date={'>=$(=today()-30)'},WeekEndFlag={'0'}>} ID)
Hi Andrew,
=NetWorkDays(Date(Today()-30),Today())
Regards,
Antonio
Try
Date(FirstWorkDate(Today(),30),'YYYY-MM-DD')
hth
Sasi