Alteryx Designer Desktop Discussions

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

IF formula not pulling correct data

carterfleming
8 - Asteroid

I have a long-ish IF formula that first needs to only select "Completed" records from the Status column. However, my output file keeps including "Completed/Unapproved" as well. I've tried including [Status] != "Completed/Unapproved" and it keeps pulling it in. Any tips for resolution?

1 REPLY 1
DataNath
17 - Castor

@carterfleming if you want to remove records then you can't do that in a Formula tool. You'll have to use a Filter tool with the expression:

 

[Status] = 'Completed'

 

The records you want will come out of the top (True) anchor. Once you have only the records you want (based on status), then you can apply your formula to change the fields as necessary.

Labels