The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I want to write a dax function with "IF" condition basis following logic;
Red | Amber | Green | |
T1 | <= 20 | >20 and <=50 | > 50 |
T2 | <=90 | >90 and <=120 | >120 |
So if Value falls in either of 3 categories (Red, Amber or Green); accordingly IF condition to calculate. my biggest problem occurs in 'Amber' column where a range of values need to be written in DAX.
Any help please?
@Zubair_Muhammad @Greg_Deckler
Solved! Go to Solution.
I think this should do it.
=if(T1 <=20, "Red", if(T1 <=50, "Amber", "Green"))
=if(T2 <=90, "Red", if(T2 <=120, "Amber","Green"))
You can try the below
1. IF(K11<=20,"red",IF(K11>50,"Green","Amber"))
2. IF(K11<=90,"red",IF(K11>120,"Green","Amber"))
Nandri
I think this should do it.
=if(T1 <=20, "Red", if(T1 <=50, "Amber", "Green"))
=if(T2 <=90, "Red", if(T2 <=120, "Amber","Green"))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
106 | |
77 | |
72 | |
47 | |
39 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
57 |