Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi guys,
Can anyone help me how to make new column using measure to lookup the Grade below.
Type A, the bigger the Green is, and Type B is opposite.
So how can I run IF or Switch function?
The function I tried seems wrong,,
Thanks in advance.
Kim
Solved! Go to Solution.
Hi @Anonymous ,
You can create a calculated column as below in the table 'SKT' to get it:
Icon Grade =
SWITCH (
TRUE (),
'SKT'[Type] = 1
&& 'SKT'[Value] < 'SKT'[Red], 1,
'SKT'[Type] = 1
&& 'SKT'[Value] > 'SKT'[Red]
&& 'SKT'[Value] <= 'SKT'[Light-Red], 2,
'SKT'[Type] = 1
&& 'SKT'[Value] >= 'SKT'[Light-Green], 4,
'SKT'[Type] = 1
&& 'SKT'[Value] >= 'SKT'[Green], 5,
'SKT'[Type] = -1
&& 'SKT'[Value] >= 'SKT'[Red], 1,
'SKT'[Type] = -1
&& 'SKT'[Value] < 'SKT'[Red]
&& 'SKT'[Value] >= 'SKT'[Light-Red], 2,
'SKT'[Type] = -1
&& 'SKT'[Value] <= 'SKT'[Light-Green], 4,
'SKT'[Type] = -1
&& 'SKT'[Value] <= 'SKT'[Green], 5,
3
)
Best Regards
Hi @Anonymous ,
You can create a calculated column as below in the table 'SKT' to get it:
Icon Grade =
SWITCH (
TRUE (),
'SKT'[Type] = 1
&& 'SKT'[Value] < 'SKT'[Red], 1,
'SKT'[Type] = 1
&& 'SKT'[Value] > 'SKT'[Red]
&& 'SKT'[Value] <= 'SKT'[Light-Red], 2,
'SKT'[Type] = 1
&& 'SKT'[Value] >= 'SKT'[Light-Green], 4,
'SKT'[Type] = 1
&& 'SKT'[Value] >= 'SKT'[Green], 5,
'SKT'[Type] = -1
&& 'SKT'[Value] >= 'SKT'[Red], 1,
'SKT'[Type] = -1
&& 'SKT'[Value] < 'SKT'[Red]
&& 'SKT'[Value] >= 'SKT'[Light-Red], 2,
'SKT'[Type] = -1
&& 'SKT'[Value] <= 'SKT'[Light-Green], 4,
'SKT'[Type] = -1
&& 'SKT'[Value] <= 'SKT'[Green], 5,
3
)
Best Regards
also how can I add another condition? if the Value is (blank) then just leave it blank without grading?
Hi @Anonymous ,
You can update the formula of calculated column as below to get it:
| Icon Grade = SWITCH ( TRUE (), ISBLANK ( 'SKT'[Value] ), BLANK (), 'SKT'[Type] = 1 && 'SKT'[Value] < 'SKT'[Red], 1, 'SKT'[Type] = 1 && 'SKT'[Value] > 'SKT'[Red] && 'SKT'[Value] <= 'SKT'[Light-Red], 2, 'SKT'[Type] = 1 && 'SKT'[Value] >= 'SKT'[Light-Green], 4, 'SKT'[Type] = 1 && 'SKT'[Value] >= 'SKT'[Green], 5, 'SKT'[Type] = -1 && 'SKT'[Value] >= 'SKT'[Red], 1, 'SKT'[Type] = -1 && 'SKT'[Value] < 'SKT'[Red] && 'SKT'[Value] >= 'SKT'[Light-Red], 2, 'SKT'[Type] = -1 && 'SKT'[Value] <= 'SKT'[Light-Green], 4, 'SKT'[Type] = -1 && 'SKT'[Value] <= 'SKT'[Green], 5, 3 ) |
Best Regards
Thank you so much! It is simpler and now working 🙂
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 50 | |
| 44 | |
| 42 | |
| 19 | |
| 19 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 33 | |
| 32 | |
| 32 |