Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
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
Hello all I am using a live connection(Direct Query Mode)
I have a Measure I,e
| User | Final User Rating | Manager Expectation | Skill Index |
| ABC | 2 | 3 | 0.666666667 |
| BCD | 4 | 2 | 2 |
| EFG | 1 | 3 | 0.333333333 |
Hi @harshagraj ,
Try this:
1. Enter data to create a Critical table.
2. Create a measure.
Measure =
VAR Critical_ =
IF ( [Skill Index] <= 0.5, "Critical", "Not Critical" )
RETURN
IF ( MAX ( Critical[Column1] ) = Critical_, [Skill Index] )
3. Create a Stacked column chart.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Icey thank you for the reply! It is working but I need to achieve this like in the below image.
The above one i did it in Extract mode. There i could able to achieve in Column.
Below are the formulas i have used.
Hi @harshagraj ,
Sorry to reply late.
I'm afraid that my method will not meet your needs.
Best Regards,
Icey
@harshagraj , Try like
This should work as a measure
DIVIDE(sum('SA USER_RATING'[Final_User_Rating]),sum('SA USER_RATING'[MANAGER_EXPECTATIONS]))
or
new measure =
AVERAGEX('SA USER_RATING', DIVIDE('SA USER_RATING'[Final_User_Rating],'SA USER_RATING'[MANAGER_EXPECTATIONS]))
Hi @amitchandak thank you. But I cannot use measure in Legend. I need to show critical and not critical.
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 37 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 25 |