Forum Discussion
jakemorris606
4 years agoFrequent Visitor
Filtering Visual with DAX
Hello, i have create a dashboard to show which contractors are on site daily - the table at the bottom is a filtered by a DAX function which returns the value 1 if the contractos fall within with...
- 4 years ago
jakemorris606 , Try a measure like
countrows(filter('Contractor Jobs', 'Contractor Jobs'[Arrival Date] <= Today() && 'Contractor Jobs'[Last Day Of Attendance] >= Today()))
jakemorris606
4 years agoFrequent Visitor
Thank you Amitchandak!.