Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Up arrow and down arrow indication compare with different table Values.

I have two table  first table name called FInal and next table name called Template . both table table have Quantity column.

 

I am trying to compare both table value 

 

If FInal Quantity value is greater than Template Quantity .  it should be  UP arrow .

if Final Quantity values is less the then  Template Quantity , it should be Down arrow .

 

i have tired the below code for background color but its not working.

Color code = (
 
     MAX(FINAL[Quantity])  > MAX(template[Quantity]),"Green",
     MAX(FINAL[Quantity])  < MAX(template[Quantity]),"Red",
    "Black"
     )
 
looking for support . thanks in advance 

2 Replies