Forum Discussion
Nigelbloomy
5 years agoFrequent Visitor
Count with second column
I have 3 columns (Investment, Investment Status, and Line Item Detail). I need a DAX measure (I don't have access to the dataset) to see if an investment has more than one status. Investment ...
- 5 years ago
Measure=CALCULATE(DISTINCTCOUNT(Sample[Investment Status]),ALLEXCEPT(Sample,Sample[Investment]))
wdx223_Daniel
5 years agoCommunity Champion
Measure=CALCULATE(DISTINCTCOUNT(Sample[Investment Status]),ALLEXCEPT(Sample,Sample[Investment]))
- Nigelbloomy5 years agoFrequent Visitor
That works Thank you! That was much simpler than the path I was headed down.