Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Conditional Format Based on Two Columns

Hi Everyone,   I have a dataset similar to the below.   Date Job ID % Achieved Calculated % Achieved 01/01/2022 1 10 10 02/01/2022 2 20 20 03/01/2022 3 30 30 04/01/2022...
  • anonymous123141's avatar
    anonymous123141
    3 years ago

    Hello,

    I am not sure if it will work for you, but it worked for my scenario.  

    Please create a new measure and label it.

     

    Test=VAR chk(Sum(Table ID[JobID%]

    Var chk2(Sum(TableID[AchievedCalculater%]

    Return IF(Chk=Chk2,"#aaaaa","#bbbbb")

     

    After you enter the measure, go to the conditional formatting for the row you want, select field value, values only, and the measure you created.  Select ok, and your table should refresh.  Please let me know if it helps.