Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
Hi
I wonder if someone can help me with this as I have been working on it for a while with limited success!!
I am trying to write a measure to show how many courses an instructor has taught since their last assessment.
My columns are:
'Table1' [Last Instructor Check]
'Table2' [Total Courses] (a measured column combining 2 types of courses so not sure if table name needed)
The complication for me is that using this measure I need to create conditioning based on the [Instructor Risk Level] (contains values H, M, L)
Is this achievable in PowerBi?
Many thanks 🙂
Solved! Go to Solution.
Hi @CSJ123 ,
Please hvae a try.
Create a measure.
measure =
SWITCH (
TRUE (),
[Instructor Risk Level] = "L"
&& [Last Instructor Check] < 6, "Green",
[Instructor Risk Level] = "L"
&& [Last Instructor Check] = 6, "Red",
[Instructor Risk Level] = "M"
&& [Last Instructor Check] < 3, "Green",
[Instructor Risk Level] = "M"
&& [Last Instructor Check] = 3, "Red",
[Instructor Risk Level] = "H", "Red",
BLANK ()
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @CSJ123 ,
Please hvae a try.
Create a measure.
measure =
SWITCH (
TRUE (),
[Instructor Risk Level] = "L"
&& [Last Instructor Check] < 6, "Green",
[Instructor Risk Level] = "L"
&& [Last Instructor Check] = 6, "Red",
[Instructor Risk Level] = "M"
&& [Last Instructor Check] < 3, "Green",
[Instructor Risk Level] = "M"
&& [Last Instructor Check] = 3, "Red",
[Instructor Risk Level] = "H", "Red",
BLANK ()
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |