Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi
How can I change the Background Colour to Red if the Field = "Expired"
Also if the Days to Ins Expiry < 45 then i want the background to be yellow
See example below:
Solved! Go to Solution.
Hi @Sean-OReilly ,
Please try this:
Expired =
SWITCH (
TRUE (),
[Days to Ins Expiry] = "Expired", "Red",
[Days to Ins Expiry] < 45, "Yellow"
)
@Sean-OReilly , better to create a color measure. And use that in conditional formatting using "Field value" option
example:
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
Hi Amitchandak, thanks for your reply
I see where you are coming from.
I cannot use the below formula though as the "days to ins expiry" field is a measure not a column
Can i do something similar using a measure?
Hi @Sean-OReilly ,
Please try this:
Expired =
SWITCH (
TRUE (),
[Days to Ins Expiry] = "Expired", "Red",
[Days to Ins Expiry] < 45, "Yellow"
)
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 |
|---|---|
| 52 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 73 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |