Forum Discussion
LTi
3 years agoFrequent Visitor
struggling with else if function in power query
Good evening, I've tried to create a test logic using an if then function. It is about the evaluation of the Value column. If this column contains the percentage value less than 50%, then "critical"...
ppm1
3 years agoSolution Sage
Please try this instead.
= if[#"value %"] <= 0,50 then "critical" else
if [#"value %"] > 0,50 and [#"value %"] <= 0,75 then "slightly critical" else "OK"
Pat
LTi
3 years agoFrequent Visitor
Hi Pat, thank you for your assistance but it still doesn't work.
Error: expected token: 'then'