Hi,
I'd like to combine these 2 formulas below but I couldn't. Is anyone please assist me?
My story is:
if column4 and column5 and column6 are bigger than 30, then make column3 green symbol
if one of the column4 or column5 or column6 is between 0 and 30, then make column3 yellow symbol
if one of the column4 or column5 or column6 is <=0 then make column3 red symbol
I've made the formulas below, they are working separately but I couldn't get them combine :
=IF(OR([Column4]@row <= 0; [Column5]@row <= 0; [Column6]@row <= 0); "Red")
➕
=IF(OR([Column4]@row <= 30; [Column5]@row <= 30; [Column6]@row <= 30); "Yellow"; "Green")
Thanks