Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I have to show Equipment's current status by 3 different colours, using button, based on current status field's value:
Equipment | Current Status |
Amp1 | Healthy |
Amp2 | Anomaly |
Amp3 | Prolonged Anomaly |
Amp4 | Anomaly |
Amp5 | Healthy |
Amp6 | Healthy |
The colours would be like: Green colour for Healthy, Red colour for Anomaly and Yellow colour for Prolonged Anomaly.
I will use a button for each equipment and fill colour based on the current status.
Thanks,
Hi, @jitpbi
You may create a measure like below and make 'Equipment' column conditional formatting based on the measure.
Measure =
SWITCH(
SELECTEDVALUE('Table'[Current Status]),
"Healthy","Green",
"Anomaly","Red",
"Prolonged Anomaly","Yellow"
)
You may create buttons for each equipment and then create a bookmark for each button's action setting. You can decide which report element to display and which filters to be applied in the bookmark.
Finally you may set the action setting for specific button as below.
When you create a bookmark, the following elements are saved with the bookmark:
For further information, please refer to the document .
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Allan,
Thanks for the comment and your suggested solution.
I have to present like below visual where colours should be represent by buttons for each equipment (e.g. ICR2-POA,ICR4-POA.....) but it is not possible as we can't apply filter on buttons for equipment. Here, I have used card and applied background condition formatting but the problem here is the size of the card is bit larger than buttons.
So, still looking if these cards can be replaced by buttons.
thanks
Hi @jitpbi ,
See if this video helps.
https://www.youtube.com/watch?v=0m-PCX1uCG4
Regards,
Harsh Nathani
@jitpbi , if you want to color in matrix/table/ display it is possible. But if you want in slicer it is not.
You can create a measure like give below and use that in conditional formatting with "field" option.
color =
switch ( true(),
FIRSTNONBLANK(Table[commodity],"NA") ="commodity1" && sum(Table[Value]) >500,"lightgreen",
FIRSTNONBLANK(Table[commodity],"NA") ="commodity2" && sum(Table[Value]) >1000,"lightgreen",
/// Add more conditions
"red"
)
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values
You can check the custom filter for slicer
https://appsource.microsoft.com/en-us/marketplace/apps?product=power-bi-visuals
Hi,
Thank you for the solution.
I have used the below measure:
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
59 | |
57 |