HI, i just shifted to Alteryx and leaning as well. i want to use some existing formula like =IFERROR(SEARCH("/",A2),0) in Alteryx
can you please let me know how can i use
thanks
Solved! Go to Solution.
Alteryx has the "findstring" function which can return the character position when the text is found
@vishal_masharuwala There are a couple of ways you can do this. Have you looked at the Regex_CountMaches() function? You can also use the contains() functions.
Input: Apple
- I want to count how many p's are in there
- Formula: REGEX_CountMatches([Field1], '[p]')
Output: 2
Here's a complete list of all the functions.
thanks a lot Digan,
it works