Forum Discussion
ledoyle1121
8 years agoFrequent Visitor
DAX formulas for Where statements
Hi, I have a column in my data which is called "NPS Category", which classifies each Case Number listed. Each row in the data either have the values of "Promoter", "Detractor", or "Neutral" withi...
- 8 years ago
Measure = CALCULATE ( DISTINCTCOUNT ( Table[CaseNumber] ), Table[NPS Category] = "Neutral" )
mattbrice
Solution Sage
8 years agoMeasure =
CALCULATE (
DISTINCTCOUNT ( Table[CaseNumber] ),
Table[NPS Category] = "Neutral"
)ledoyle1121
8 years agoFrequent Visitor
Not sure what I was doing wrong before - but that worked perfect, thanks!!