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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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