Forum Discussion
J_S_A
1 year agoHelper I
Conditional formatting by row
Hi all, I'm wondering if anyone could help me solving this. I have a visual table in Power BI that looks like this: All columns have been calculated, based on the main table. What I n...
J_S_A
1 year agoHelper I
hI fahadqadir3
I have created this measure to obtain the Max Deviation in each row:
MaxDeviation =
VAR ValuesTable = {
[Average_Created_FuncSpec],
[Average_FuncSpec_Handover],
[Average_Handover_Delivery],
[Average_UAT_Deploy],
[Average_Deploy_Completed]
}
VAR MaxValue = MAXX(ValuesTable, [Value])
RETURN MaxValue
Then, i have created this measure for the color:
Then, i have created this measure for the color:
Color_Created_FuncSpec =
IF( [Average_Created_FuncSpec] = [MaxDeviation], "#FF0000", "#0000FF" )
But nothing changes.
Could you please help me?
But nothing changes.
Could you please help me?
J_S_A
1 year agoHelper I
Hi fahadqadir3 , andrewsommer
Could anyone help me with the solution?
Thanks