Forum Discussion
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
- amitchandak
Super User
jmuthukumaran , You can create a color measure and use that in conditional formatting using field value option
if([Target %]< [CFR Total], "Green", "Red")
How to do conditional formatting by measure and apply it on pie? : https://youtu.be/RqBb5eBf_I4
- jmuthukumaranFrequent 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
- PC2790
Community Champion
- V-lianl-msft
Community 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.- jmuthukumaranFrequent Visitor
Thanks for the reply , if i have multiple countries in column A like China , India etc
does measure logic change ?
- V-lianl-msft
Community 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.