Forum Discussion
rocky09
Solution Sage
9 years agoStuck with Multiple If Conditions
I have this below table. I am trying to make custom column with the below criteria. But, I am not sure how to use PBI IF condition. (in excel it is pretty easy). if [No of Days] > 50 and < 150, "...
Eric_Zhang
Microsoft Employee
9 years ago
Try to use SWITCH
Column =
SWITCH (
TRUE (),
yourTable[No Of Days] > 600, "Critial",
yourTable[No Of Days] > 150, "Just Below Critica",
yourTable[No Of Days] > 50, "Under Control",
"Normal"
)rocky09
Solution Sage
9 years agoThank you Eric_Zhang