I'm making my first workflow within Alteryx, and am having an issue with the filtering to output file not applying the filters. Here is the workflow:
The output I'm having trouble with is "User Modifications". It seems to be ignoring the first filter (where blanks are false) as well as the second filter. Everything except the rows I am looking for is going to output.
Can anyone provide a solution for this? This is my first workflow again so explanations in simple terms are appreciated!
Solved! Go to Solution.
Hi @bg00
Without analyzing the workflow it is difficult to solve. If possible then please share your workflow.
Best Regards
Arundhuti
@Qiu I tried to use the IsEmpty() but a parse error kept popping up. I wrote it as:
[Column Name] IsEmpty()
In the customer filter
Here it is! My goal is to filter all of the users that have anything other than Null or some version of "Ok" in the business feedback column, and export those users to the output file "user modifications". Currently, only the nulls and ok rows are being exported.
Would there be a better way to do the filter, since some of the feedback says things in addition to just "Ok", but I want anything that says "ok" as part of the cell to be excluded? Is there another tool for that?
Thank you!
Hi @bg00,
I'd recommend using the following expression in your filter:
!IsEmpty([Business Feedback])
AND
!Contains([Business Feedback], "Ok")
I hope this helps!
Also, I see that you have referenced dummy data in your workflow. However, sending a .yxmd file does not include the data itself. If your intention was to also send the dummy data for community members, you can go to Options > Export Workflow to create a .yxzp file that will include the dummy data!
As I have suggested, and be care of the upper and lower cases since it is case sensitive.
!IsEmpty([Business Feedback])
AND
[Business Feedback]!="Ok"