Forum Discussion
Stu11
4 years agoFrequent Visitor
Measure using current filters
Hi, Wondering if you can help. In the table below you can see those ticket made in Oct (filtered) and the date they were closed. Can you help me with another column? This will only sum those ...
- 4 years ago
You could try a measure like
Num solved = var maxDate = MAX('Date'[Date]) var minDate = MIN('Date'[Date]) return CALCULATE( COUNTROWS('Table'), REMOVEFILTERS('Date'), 'Table'[Solved date] >= minDate && 'Table'[Solved date] <= maxDate )
Thejeswar
4 years agoSuper User
Hi,
I think some more info might be required for someone to help you on this.
Give info like what is the expected output?
What happens when a different month is selected?