Forum Discussion

jmuthukumaran's avatar
jmuthukumaran
Frequent Visitor
4 years ago

Background color based on another row

Team , 

 

I have a matrix report , i need to add background color to "CFR Total" row based on "Target %" row ,something like this 

if target % is less than CFR Total for that period then Green else Red.i tried multiple ways but i couldnt get this , kidnly help

 

Report View:

 

Table data :

 

 

6 Replies

    • jmuthukumaran's avatar
      jmuthukumaran
      Frequent Visitor

      Thanks for the quick response , in my case [Target %] and [CFR Total] are present as row values not as a column name refer 2nd screenshot for data view,  

      this condition  if([Target %]< [CFR Total], "Green", "Red") is not working 

  • V-lianl-msft's avatar
    V-lianl-msft
    Icon for Community Support rankCommunity Support

    Hi jmuthukumaran ,


    Please try to create measure like below:

    Measure2 = 
    var target_ = CALCULATE(SUM('test'[Value]),FILTER(ALL('test'),'test'[Period]=SELECTEDVALUE('test'[Period])&&'test'[Details]="Target %"))
    Var total_ =CALCULATE(SUM('test'[Value]),FILTER(ALL('test'),'test'[Period]=SELECTEDVALUE('test'[Period])&&'test'[Details]="Total"))
    return IF(target_<total_,"green","red")

     

     


    Best Regards,
    Liang
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • jmuthukumaran's avatar
      jmuthukumaran
      Frequent Visitor

      Thanks for the reply , if i have multiple countries in column A like China , India etc 

      does measure logic change ?

      • V-lianl-msft's avatar
        V-lianl-msft
        Icon for Community Support rankCommunity Support

        Hi jmuthukumaran ,

         

        Add the country condition in filter:

        Measure2 = 
        var target_ = CALCULATE(SUM('test'[Value]),FILTER(ALL('test'),'test'[Period]=SELECTEDVALUE('test'[Period])&&'test'[Details]="Target %"&&'test'[country]=SELECTEDVALUE('test'[country])))
        Var total_ =CALCULATE(SUM('test'[Value]),FILTER(ALL('test'),'test'[Period]=SELECTEDVALUE('test'[Period])&&'test'[Details]="Total"&&'test'[country]=SELECTEDVALUE('test'[country])))
        return IF(target_<total_,"green","red")


        Best Regards,
        Liang
        If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.