Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.