March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
Im trying to get my measures which are Good, Poor Neither and dont know to display like the top graph. However I don't know how I would link my measures which are calculating a percentage to show up on the X axis rather than a Legend.
Solved! Go to Solution.
Hi @Ricky190 ,
Create a new table:
Then create a measure linking these measures to the x-axis:
Measure =
SWITCH(
MAX('Table'[Status]),
"Good", [Good],
"Neither good nor poor", [Neither good nor poor],
"Poor", [Poor],
[I don't remember]
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for your help but im not sure how i would apply this? here is an example of one of my measures:
So its baically pulling data from 3 different columns and working out what percentage said Good.
Hi @Ricky190 ,
Create a new table:
Then create a measure linking these measures to the x-axis:
Measure =
SWITCH(
MAX('Table'[Status]),
"Good", [Good],
"Neither good nor poor", [Neither good nor poor],
"Poor", [Poor],
[I don't remember]
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Brilliant works a treat!
For this type of graph, you would need 1 measure with 4 descriptions.
like this:
then you can create it like this
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |