Forum Discussion

clem312's avatar
clem312
Icon for Resolver I rankResolver I
5 years ago
Solved

Background color

Is it possible to have same background color for 2 measures in a matrix ?

 

 

  • Fowmy's avatar
    Fowmy
    5 years ago

    clem312 

    You can still use conditional formatting, check the following example. I create a measure to evaluate and apply CF on the background of the sales value measure. I also attached the file

     

     

    CF = 
    
    SWITCH(
        SELECTEDVALUE(financials[Country]),
        "Canada", "Yellow",
        "France", "Blue",
        "Mexico", "Pink",
        "Germany", "Green"
        )
    

     

     

     

     

6 Replies