Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
How can I Count 'CandidateMeritID' if 'Detail1DropDownValue' = "No"?
Thanks,
Solved! Go to Solution.
Hi @HenryJS ,
You could refer to this measure:
Measure =
CALCULATE(COUNT('Table'[CandidateMeritID]),FILTER('Table','Table'[Detail1DropDownValue]="No"))Measure =
COUNTROWS(FILTER('Table','Table'[Detail1DropDownValue]="No"))
Or create a calculated column:
Column =
IF('Table'[Detail1DropDownValue]="No",1,0)
Hi @HenryJS ,
You could refer to this measure:
Measure =
CALCULATE(COUNT('Table'[CandidateMeritID]),FILTER('Table','Table'[Detail1DropDownValue]="No"))Measure =
COUNTROWS(FILTER('Table','Table'[Detail1DropDownValue]="No"))
Or create a calculated column:
Column =
IF('Table'[Detail1DropDownValue]="No",1,0)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 35 | |
| 34 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 99 | |
| 73 | |
| 66 | |
| 65 |