This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Is there a way to change the color of the columns (PD_QTY) based on the date? I'm looking to change the color for values in the future. When I click on the function button for the column color, I only get an option to count the date field, not based upon what the date it.
Solved! Go to Solution.
Hi @davisaj2 ,
According to your description, modify your formula to:
Change Qty Color =
VAR PDDate =
MAX ( 'PD Hist'[DATE] )
RETURN
IF ( PDDate < TODAY (), "#FF0000", IF ( PDDATE >= TODAY (), "#008000" ) )
In the visualization formatting pane>Columns>Colors, click the fx button.
Select the measure in the based on field.
Get the correct result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @davisaj2 ,
According to your description, modify your formula to:
Change Qty Color =
VAR PDDate =
MAX ( 'PD Hist'[DATE] )
RETURN
IF ( PDDate < TODAY (), "#FF0000", IF ( PDDATE >= TODAY (), "#008000" ) )
In the visualization formatting pane>Columns>Colors, click the fx button.
Select the measure in the based on field.
Get the correct result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This worked! Thank you so much!
Apply conditional formatting by field value, i.e. use a DAX expression to set conditions and the corresponding colors:
https://powerbidocs.com/2020/11/02/conditional-formatting-by-field-value-in-power-bi/
Thank you for the link recommendation. I tried to replication the measure using a date instead of a number and Power BI didn't like the date field. Any suggestions?
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 53 | |
| 31 | |
| 23 | |
| 23 |