Forum Discussion
Jaweed
7 years agoHelper III
Distinct Count
Hi experts I am new at PBi and need to extract an aggregate value from my file. I want to know the distinct count of companies which have invoices <=30 days as per table below. Company ...
- 7 years ago
You can create a measure as follows:
TheMeasure = CALCULATE(DISTINCTCOUNT(Table1[Company]),Table1[AmountDue <= 30days]>0)
- 7 years ago
I hope it worked for you, please accept the suggested measure as a solution