Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Include in output if amount in an specific column is more that $600 and more than $-600

Jmaldonado
5 - Atom

Hi,

 

I'm trying to create an if statement to exclude from the output anything that is less than $600 or less that $ -600 for either sum 1 or sum 2 columns. In other words, exclude anything between $600 and $-600. Attached output file for your reference. 

 

1 REPLY 1
atcodedog05
22 - Nova
22 - Nova

Hi @Jmaldonado 

 

Formula in filter would be something like below. Where its checking that Sum1 & Sum2 are both lesser than 600 and greater than -600

 

([Sum 1]<=600 and [Sum 1]>=-600)

AND

([Sum 2]<=600 and [Sum 2]>=-600)

 

 

Workflow:

atcodedog05_0-1622652168699.png

 

Hope this helps 🙂

Labels
Top Solution Authors