Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
How can I create a conditional formatting measure which states:
If [advert created] =< ([job registered] + 3 days) THEN Green
If [advert created] > ([job registered] + 3 days) THEN Yellow
If [adverted] = "No" THEN Red
Solved! Go to Solution.
@HenryJS , Create a color measure use in conditional formatting with field value option
Color = Switch( True() ,
max(table[advert created]) =< max([job registered]) + 3 , "Green",
max(table[advert created]) > max([job registered]) + 3 , "Yellow",
max([adverted]) = "No","Red"
)
refer for step: 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
@HenryJS , Create a color measure use in conditional formatting with field value option
Color = Switch( True() ,
max(table[advert created]) =< max([job registered]) + 3 , "Green",
max(table[advert created]) > max([job registered]) + 3 , "Yellow",
max([adverted]) = "No","Red"
)
refer for step: 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 33 | |
| 29 | |
| 27 |
| User | Count |
|---|---|
| 134 | |
| 104 | |
| 63 | |
| 60 | |
| 55 |