Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
https://drive.google.com/file/d/1MKNxxfU5nuhIBZvwR8BWePVF2QAJOosh/view?usp=sharing
plz see the attached link to the dummy data with expected result
I have measures which calculate the distinct count
chn group(AN,GN,DN,EN,SN) | unique count (Active brands) | result (inactive brands) |
AN | 192 | 341-192=149 |
GN | 241 | 341-241=100 |
DN | 212 | 341-212=129 |
EN | 139 | 341-139=202 |
SM | 140 | 341-140=202 |
other | ||
Total | 315 |
Solved! Go to Solution.
@tabish , Diff from total measure
diff =CALCULATE(DISTINCTCOUNT([Brand]), FILTER(allselected(Table),[Chnl] in{ "AN" ,"GN" ,"DN" , "EN" , "SN"}) ) -
CALCULATE(DISTINCTCOUNT([Brand]), FILTER(Table,[Chnl] in{ "AN" ,"GN" ,"DN" , "EN" , "SN"}))
@tabish , Diff from total measure
diff =CALCULATE(DISTINCTCOUNT([Brand]), FILTER(allselected(Table),[Chnl] in{ "AN" ,"GN" ,"DN" , "EN" , "SN"}) ) -
CALCULATE(DISTINCTCOUNT([Brand]), FILTER(Table,[Chnl] in{ "AN" ,"GN" ,"DN" , "EN" , "SN"}))
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |