Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
joannasokolowsk
Helper II
Helper II

Color conditional formatting based on column

Hi all,

I would like to ask you about conditional formatting regarding table chart. Is there a way to add a background color for values from FY19 column if the value is smaller/bigger comparing to value in FY18 column. 

 

joannasokolowsk_0-1613735141440.png

 

Thanks,

Asia

 

 

3 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@joannasokolowsk , have year measures like

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

diff = [This Year]-[Last Year ]

 

If date is selected

 

Create a color measure and use that is conditional formatting using field value option

if([diff] > 0, "green", "red")

 

refer for steps

 

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

View solution in original post

negi007
Community Champion
Community Champion

@joannasokolowsk 

Please follow below steps

 

1. Create a measure to calculate difference between two financial years. 

FY_Diff = SUM(FY_Compar[FY19])-SUM(FY_Compar[FY18])
(imp: if you do not have FY19 and FY18 as seperate columns, then you will have to create two more measures. each one to calcualte financial year values of FY18 and FY19 )
 
2. Then use the measure created in first step for conditionalf formatting like below
 
 
negi007_1-1613737576141.png

 

3. Your final output is below

negi007_2-1613737606285.png

 

let me know if you need more assistance in this. I hope this should resolve your concern.

 




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

View solution in original post

Hi, @joannasokolowsk 

Yes,the conditional format is based on some field. If you have 20 sets of such comparisons, then it is inevitable that you need 20 such  fields (column\measure) as the basis for judgment.

 

Best Regards,
Community Support Team _ Eason

View solution in original post

5 REPLIES 5
joannasokolowsk
Helper II
Helper II

Thank you!

joannasokolowsk
Helper II
Helper II

Thanks for your suggestions! If I need to compare 20 such columns I guess I need to create a mesaure for all such cases, right? 

 

Thanks,

Asia

Hi, @joannasokolowsk 

Yes,the conditional format is based on some field. If you have 20 sets of such comparisons, then it is inevitable that you need 20 such  fields (column\measure) as the basis for judgment.

 

Best Regards,
Community Support Team _ Eason

negi007
Community Champion
Community Champion

@joannasokolowsk 

Please follow below steps

 

1. Create a measure to calculate difference between two financial years. 

FY_Diff = SUM(FY_Compar[FY19])-SUM(FY_Compar[FY18])
(imp: if you do not have FY19 and FY18 as seperate columns, then you will have to create two more measures. each one to calcualte financial year values of FY18 and FY19 )
 
2. Then use the measure created in first step for conditionalf formatting like below
 
 
negi007_1-1613737576141.png

 

3. Your final output is below

negi007_2-1613737606285.png

 

let me know if you need more assistance in this. I hope this should resolve your concern.

 




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

amitchandak
Super User
Super User

@joannasokolowsk , have year measures like

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))

diff = [This Year]-[Last Year ]

 

If date is selected

 

Create a color measure and use that is conditional formatting using field value option

if([diff] > 0, "green", "red")

 

refer for steps

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.