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"))
ryan_mayu
6 years agoSuper User
please try this
THISMONTHWORKDAY =
CALCULATE(COUNTROWS('DATE'),FILTER('DATE','DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))
Killingworth
6 years agoRegular Visitor
That worked thanks for your help