Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

If statement with 4 or more

I'm not able to make one if more than three conditions, is how to color within the field of speech?

if(Goal = 'Green',Green(),

if(Goal = 'Yellow',Yellow(),

if(Goal = 'Red',Red(),

if(Goal = 'Gray',Darkgray()))))

1 Solution

Accepted Solutions
Not applicable
Author

Hi Gabriel,

May be you rae messing somewhere in braces cause

this expression worked 4 me

 

if

(count(XXX)=2100,green(),
(
if(count(XXX),Blue(),
(
if(count(XXX)=1500,Red(),
(
if(count(XXX)>1000,Black(),rgb(225,115,105)
)
))
))
)
)

thank you

Meher

View solution in original post

1 Reply
Not applicable
Author

Hi Gabriel,

May be you rae messing somewhere in braces cause

this expression worked 4 me

 

if

(count(XXX)=2100,green(),
(
if(count(XXX),Blue(),
(
if(count(XXX)=1500,Red(),
(
if(count(XXX)>1000,Black(),rgb(225,115,105)
)
))
))
)
)

thank you

Meher