Forum Discussion
sflynn
Helper I
5 years agoDAX Measure Category Total per row
I am trying to display the total count by category for each line item within the category based on the slicer selections. The problem I am having is if I use a count ignoring the field used in the sl...
- 5 years ago
sflynn , Not very clear, Try a measure like
Calculate(Countrows('Data'),filter(allselected('Data'),'Data'[Name] = max('Data'[Name]) && 'Data'[Month] =max('Data'[Month])))
amitchandak
Super User
5 years agosflynn , Not very clear, Try a measure like
Calculate(Countrows('Data'),filter(allselected('Data'),'Data'[Name] = max('Data'[Name]) && 'Data'[Month] =max('Data'[Month])))
- sflynn5 years ago
Helper I
That worked! Thank you for help, very much appreciated.