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! It's time to submit your entry. Live now!
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! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 142 | |
| 111 | |
| 65 | |
| 38 | |
| 33 |