Forum Discussion
Adavin
16 days agoFrequent Visitor
Why can I not conditional format my visual
Hi,
I am struggling to format my table - just a excel file
All I want to do is change the negative values to red in the 'FC Q2 Income Variance'.
But the conditional format is NOT allowing me too (see the below)
Any idea why?
Hi Adavin ,
Is the FC Q2 Income Variance a measure or a visual calculations? Make sure that is in the number format if it's a measure just check the format, if it's a visual calculation you need to use the Data format pane in the visualization:
3 Replies
- AdavinFrequent Visitor
Hello Thanks for coming back much appreciated.
I have fixed this by just adding in
DAXFontColor =
IF(
SUM('Income 25-26 Forecast by Quarter'[FC Income Q2]) < 0,
"Red", -- Red for negative
"Green" -- Green for positive or zero
)