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
I want to create a new measure or calculated column that counts the rows where the following conditions are met:
dsi_flag_cur_wk is “Red”
part_ww_dsi_flag is “Red”
cfg_ww_dsi_flag is “Red”
ack_flag is “Yes”
commit_act_chg is “Yes”
When these conditions are true, the value should be counted as 1. In your visualization, you want to see the total count of these rows.
Can someone please help me with the dax for this.
Solved! Go to Solution.
=IF([dsi_flag_cur_wk] = “Red” &&
[part_ww_dsi_flag] = “Red” &&
[cfg_ww_dsi_flag] = “Red” &&
[ack_flag] = “Yes” &&
[commit_act_chg] = “Yes”,1,0)
Thank you it worked.
=IF([dsi_flag_cur_wk] = “Red” &&
[part_ww_dsi_flag] = “Red” &&
[cfg_ww_dsi_flag] = “Red” &&
[ack_flag] = “Yes” &&
[commit_act_chg] = “Yes”,1,0)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 8 | |
| 7 |