Forum Discussion
Killingworth
6 years agoRegular Visitor
Working Days
I have two tables 1. With raw data of interactions broken down by date 2. Date table with all dates of the year with an indicator if the day is a working day or not. I have a measure whic...
- 6 years ago
please try this
THISMONTHWORKDAY = CALCULATE(COUNTROWS('DATE'),FILTER('DATE','DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))
Killingworth
6 years agoRegular Visitor
That gives me the number of working days complete in the current month but if I filter the data for previous months it doesn't give the amount of working days complete in the filtered month ?
ryan_mayu
6 years agoSuper User
please try this
THISMONTHWORKDAY =
CALCULATE(COUNTROWS('DATE'),FILTER('DATE','DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))
- Killingworth6 years agoRegular Visitor
That worked thanks for your help