Forum Discussion
Tarun_B9012
1 year agoNew Member
DAX doubt
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_fl...
- 1 year ago
=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)
Tarun_B9012
1 year agoNew Member
Thank you it worked.