Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Formula HELP

rrahu07
8 - Asteroid

I am trying to use this formula. but I am getting error. 

if [Account Group] = "CAPL CE"
or
"COMPTR"
or
"SW SEH"
Then [Fixed Asset After Adjustment] else 0

 

rrahu07_0-1645471945080.png

Can someone please help me to fix this formula?

4 REPLIES 4
ChrisTX
16 - Nebula
16 - Nebula

if [Account Group] IN ("CAPL CE", "COMPTR", "SW SEH")
Then [Fixed Asset After Adjustment] else 0 ENDIF

atcodedog05
22 - Nova
22 - Nova

Hi @rrahu07 

 

Formula should be

 

if [Account Group] In ("CAPL CE","COMPTR","SW SEH")
Then [Fixed Asset After Adjustment]

Else 0 Endif

 

atcodedog05_0-1645472204756.png

 

Hope this helps : )

rrahu07
8 - Asteroid

YOU ARE AMAZING!!! Thanks.

atcodedog05
22 - Nova
22 - Nova

Happy to help : ) @rrahu07 

Cheers and have a nice day!

Labels
Top Solution Authors