Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have a trivial question but I have been asked to make the format exactly the same as other system so here goes.
I have the below matrix but as you can see, the background color is only applied to the total values, but not to the "Total" nor the row total value("5,350").
Is there any way to apply the same background color all the way to "Total" and "5,350" in the below screenshot ?
Please note that I dont want to apply the blue background to the whole row headers, only the "Total".
And likewise I only want the blue background for "5,350" , but not the whole row totals.
Is this possible ?
Solved! Go to Solution.
Create a DAX Expression for colors
Color = IF(HASONEVALUE(Table[year]),"White","Sky Blue")
Set the background of the value as and apply to totals only
you will get below results
Proud to be a Super User!
Worked great, thanks Farhan!
Create a DAX Expression for colors
Color = IF(HASONEVALUE(Table[year]),"White","Sky Blue")
Set the background of the value as and apply to totals only
you will get below results
Proud to be a Super User!
like wise if you want only totals to be colored change the color expression
Color = IF(HASONEVALUE(Table[Year]) || HASONEVALUE(Table[Month]),"White","Sky Blue")
Proud to be a Super User!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.