Forum Discussion
Counting distinct (unique) values
- 8 years ago
And this
Measure 2 = SUMX ( ALL ( PPECheckInOut[ScanKitBag ], PPECheckInOut[ Crabs] ), CALCULATE ( VALUES ( PPECheckInOut[ Crabs] ) ) )
Thanks
Smoupre
i am new to BI so relay dont know what to do with the Enter Data Query. could you give me a steer on where this is placed to help with the soultion.
You can do 2 things. Either create a new blank query and use Advanced Editor to paste in my code. Or, click on Enter Data in the ribbon and copy and paste the data you posted including the column header.
- Zubair_Muhammad8 years agoCommunity Champion
Count Kit Bags = CALCULATE ( DISTINCTCOUNT ( PPECheckinOut[ScanKitbagTag] ), FILTER ( ALL ( PPECheckinOut[ScanKitbagTag] ), PPECheckinOut[ScanKitbagTag] <> BLANK () ) )- Colinu8 years agoHelper I
HI Zubair
that did the trick thanks.
it has however shown one more issue. in one of the column i need to count there are quantities.
ScanKitBag Crabs
12 2
13 4
14 2
15 2
16 4
16 4
In this instance i want to sum [Crabs] but exclude the duplicate bag numbers (16 counted twice.) So the out come of this instance would be 14 and not 18.
- Zubair_Muhammad8 years agoCommunity Champion
Try this
Measure = SUMX ( SUMMARIZE ( PPECheckInOut, PPECheckInOut[ScanKitBag ], PPECheckInOut[ Crabs] ), CALCULATE ( VALUES ( PPECheckInOut[ Crabs] ) ) )