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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
vnqt
Helper V
Helper V

Color formatting with 3 conditions

Hello,

 

I need to apply the formatting background of column 2 in Table visual with 3 different conditions : 

 

Column 1Column 2Column 3Column 4
4238
5742
4422
    

Condition 1 : Column 2 = Column 1  : no color

Condition 2 : Column 2 > Column 1 : Red

Condition : Column 3 > Column 4 : Orange

 

Thank you in advance.

 

1 ACCEPTED SOLUTION
Mahesh0016
Super User
Super User

Mahesh0016_0-1671707378071.png

#Measures :

_BGColor1 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2=col1,"#0000FF","Yellow")
 
#Measure_2 :
_BGColor2 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2>col1,"RED","Yellow")
 
#Measure_3 :
_BGColor3 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col3>col4,"Orange","Yellow")
 
#Measure_4 : 
_BGColor4 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2>col1,"#00FFFF","Yellow")
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
Mahesh0016
Super User
Super User

Mahesh0016_0-1671707378071.png

#Measures :

_BGColor1 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2=col1,"#0000FF","Yellow")
 
#Measure_2 :
_BGColor2 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2>col1,"RED","Yellow")
 
#Measure_3 :
_BGColor3 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col3>col4,"Orange","Yellow")
 
#Measure_4 : 
_BGColor4 =
 VAR col1 = SELECTEDVALUE('conditional Formatting'[Column1])
 VAR col2 = SELECTEDVALUE('conditional Formatting'[Column2])
 VAR col3 = SELECTEDVALUE('conditional Formatting'[Column3])
 VAR col4 = SELECTEDVALUE('conditional Formatting'[Column4])

 RETURN
 IF(col2>col1,"#00FFFF","Yellow")
If this post helps, please consider accept as solution to help other members find it more quickly.
Mahesh0016
Super User
Super User

can you share sample output in table format?

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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