Multi-conditional statement problems
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello Everyone,
I am an Alteryx rookie and am having issues with another one of my multi-conditional statements. I have tried changing the [created] data type from a date, to an integer, to a string and cannot seem to clear the error message in the formula. I continue to get the error message "the field ""is not contained in the record".
If [created]<="2019-01-01" THEN "2018"
ELSEif [created]<="2019-01-31" THEN "January"
ELSEif [created]<="2019-02-28" THEN "February"
ELSEif [created]<="2019-03-31" THEN "March"
ELSEif [created]<="2019-04-30" THEN "April"
ELSEif [created]<="2019-05-31" THEN "May"
ELSEif [created]<="2019-06-30" THEN "June"
ELSEif [created]<="2019-07-31" THEN "July"
ELSEif [created]<="2019-08-31" THEN "August"
ELSEif [created]<="2019-09-30" THEN "September"
Else "Other"
ENDIF
Thanks for the help!
Matt.
Solved! Go to Solution.
- Labels:
- Preparation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Its labeled as a V_WString, but I am unable to change it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Can you upload your workflow?
Without seeing it though, did you make sure to name the field that you added with this formula? That can cause the error you're getting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @MHS
The message "the field ""is not contained in the record" is the message you get when your trying to apply a formula without specifying the field that you want to apply it to.
Make sure you have something in the red box above, either a new name for a new column or an existing column if you're trying to change one of those
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
That was it!
Forgot to label the output field name....
Thanks for the help!
