Forum Discussion
mmorley
4 years agoFrequent Visitor
Measure based on a multi-select slicer
Hi, I'm trying to create a measure that obtains a count of records based on the records listed in the relevant months from the slicer selection. I can get the list of months using Multi_Select...
- 4 years ago
Thanks all,
Managed to resolve it using the month table with the count of measure entries, I created another card that just used this and summed the values up for the selected months
johnt75
Super User
4 years agoSet up a proper date table and link that to your TaskRange table. Use columns from the Date table on your visuals, including the slicer, and your measure becomes simply
Total tasks = COUNTROWS( 'TaskRange')