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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Kudoed Authors