IF Statement
- 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
Morning awesome Alteryx community
I've got onequestion
What is the formula to use for the following scenario?
If title contains "trainee" or "assistant" or "contractor" then remove entire Excel row
Thanks in advance for your help
Solved! Go to Solution.
- Labels:
- Expression
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Tommaso83,
Use a filter tool with the following custom filter.
Contains(title,'trainee') or Contains(title,'assistant') or Contains(title,'contractor')
Your F anchor will remove all unwanted rows.
Best,
Fernando V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Tommaso83 ,
As far as I am familiar with the Alteryx there is no such way of deleting the row or a column directly in alteryx but you can simply use filter tool to get the desired output. Here is the formula that you can use in the filter tool by changing its configuration to Custom.
Contains([Title], "Trainee") or
Contains([Title], "Assistant") or
Contains([Title], "Contractor")
I hope this helps!
@Tommaso83 wrote:Morning awesome Alteryx community
I've got onequestion
What is the formula to use for the following scenario?
If title contains "trainee" or "assistant" or "contractor" then remove entire Excel row
Thanks in advance for your help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you!!!
One more question:
How to write filter expression that removes anyone which last name contains only 1 letter or 1 letter with a dot (ex. A or A.)?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Tommaso83 ,
You can use the regex_match function with a filter tool as well.
!REGEX_Match([lastname], '\w\.{0,1}')
\w = a word character = [a-zA-Z0-9]
\. = literal dot
{0,1} = 0 or 1 occurences of the previous character (dot)
Best,
Fernando Vizcaino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks @fmvizcaino
Your reply is a bit too complicated for me so not sure how to do this in Alteryx 😉
Any chance you can explain this further or let me know steps to achieve the outcome I'm looking for?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Tommaso83 ,
Sorry for not explaining clearly.
I'm going to attach an example showing how.
Best,
Fernando Vizcaino
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
