Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Can anyone assist with the following:
I would like to combine two dimensions to apply a color expression.
=if(if(sum([gg_availability])<17, RGB(249,63,23), RGB(70,198,70),),
if(sum([mn_availability])<23, RGB(249,63,23), RGB(70,198,70),))
this syntax is giving me error.
Thanks all.
Regards
Jose
May be this
=If(Sum([gg_availability]) < 17 or Sum([mn_availability]) < 23, RGB(249,63,23), RGB(70,198,70))
If it is an AND condition, then this
=If(Sum([gg_availability]) < 17 and Sum([mn_availability]) < 23, RGB(249,63,23), RGB(70,198,70))
May be this
=If(Sum([gg_availability]) < 17 or Sum([mn_availability]) < 23, RGB(249,63,23), RGB(70,198,70))
If it is an AND condition, then this
=If(Sum([gg_availability]) < 17 and Sum([mn_availability]) < 23, RGB(249,63,23), RGB(70,198,70))
First Syntax worked!
thanks a million Sunny!
Really appreciate your help as always! 🙂
regards
Jose