Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Need help to calculate number of NG product from below chart.
I tried DAX query but could not visualize the data in report view.
=COUNTA(DISTINCT(FILTER('Raw Data','Raw Data'[Product]&&'Raw Data'[OK/NG]="NG")))
Solved! Go to Solution.
This should work for you.
Measure =
CALCULATE(
DISTINCTCOUNT(sampleTable[Product]),
FILTER(sampleTable, sampleTable[OK/NG] = "NG")
)
Proud to be a Super User! | |
This should work for you.
Measure =
CALCULATE(
DISTINCTCOUNT(sampleTable[Product]),
FILTER(sampleTable, sampleTable[OK/NG] = "NG")
)
Proud to be a Super User! | |
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |