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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
TTPP81
Frequent Visitor

Set color in one column using value from another column

Hi, I would like to set a condition whereby if the value in "date range' column shows 'within date range', the rating column and true rating outcome will change color depending on whether it is MOD (YELLOW) & SUS (GREEN). May i know how can i achieve this?condition formatting

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @TTPP81 ,

 

You can create measures that adjust your formatting, for example:

CondFmt_Rating = 
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __ratingValue = SELECTEDVALUE(CF_Test_Table[Rating])
RETURN
SWITCH(
    TRUE(),
    __timeValue = "Within" && __ratingValue = "MOD", "#FEC0BF",  // your yellow hex code
    __timeValue = "Within" && __ratingValue = "SUS", "#99E3DD"   // your green hex code
)

CondFmt_TrueRating = 
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __trueValue = SELECTEDVALUE(CF_Test_Table[True Rating])
RETURN
SWITCH(
    TRUE(),
    __timeValue = "Within" && __trueValue = "MOD", "#FEC0BF",  // your yellow hex code
    __timeValue = "Within" && __trueValue = "SUS", "#99E3DD"   // your green hex code
)

 

Once you've created the measures, you apply them to the visual using Cell Elements > Series (the column you want to format) > Background Colour (fx) > Field Value > select conditional format measure from dropdown list.

BA_Pete_0-1727432453715.png


In this example, I get the following output:

BA_Pete_1-1727432497615.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

1 REPLY 1
BA_Pete
Super User
Super User

Hi @TTPP81 ,

 

You can create measures that adjust your formatting, for example:

CondFmt_Rating = 
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __ratingValue = SELECTEDVALUE(CF_Test_Table[Rating])
RETURN
SWITCH(
    TRUE(),
    __timeValue = "Within" && __ratingValue = "MOD", "#FEC0BF",  // your yellow hex code
    __timeValue = "Within" && __ratingValue = "SUS", "#99E3DD"   // your green hex code
)

CondFmt_TrueRating = 
VAR __timeValue = SELECTEDVALUE(CF_Test_Table[Date Range])
VAR __trueValue = SELECTEDVALUE(CF_Test_Table[True Rating])
RETURN
SWITCH(
    TRUE(),
    __timeValue = "Within" && __trueValue = "MOD", "#FEC0BF",  // your yellow hex code
    __timeValue = "Within" && __trueValue = "SUS", "#99E3DD"   // your green hex code
)

 

Once you've created the measures, you apply them to the visual using Cell Elements > Series (the column you want to format) > Background Colour (fx) > Field Value > select conditional format measure from dropdown list.

BA_Pete_0-1727432453715.png


In this example, I get the following output:

BA_Pete_1-1727432497615.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.