The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have created measures to grade different aspects of my data (highlighted in yellow in the measures list)
Is there a way that I can create another measure that it looks at all the values from the other measures?
For instance, from the example, let's say that
Green = 0
Amber = 1
Red = 3
And I I want it so that if
the sum of all different measures is < 7 the General Grading is "Green";
If is 7 < x < 14 is "Amber";
if it is > 14 is "Red".
I plan to develop additional grading aspects. What is the best way of doing it so that I can easily update the General Grading to acommodate these additional gradings?
Thank you
J
Solved! Go to Solution.
Hi @Anonymous
You may create a measure like below and then use conditional formatting.
Measure = IF ( [Measure1] + [Measure2] + [Measure3] < 7, IF ( [Measure1] + [Measure2] + [Measure3] > 14, 3, 2 ) )
Regards,
Hi @Anonymous
You may create a measure like below and then use conditional formatting.
Measure = IF ( [Measure1] + [Measure2] + [Measure3] < 7, IF ( [Measure1] + [Measure2] + [Measure3] > 14, 3, 2 ) )
Regards,
User | Count |
---|---|
59 | |
57 | |
55 | |
50 | |
32 |
User | Count |
---|---|
171 | |
87 | |
70 | |
46 | |
45 |