Hello! I am trying to replicate the Mid/find formula combo in excel to parse through a text string
Here's some example text, I want my new column to give me the 0301 from this text:
Total.0301 - Example Example
So I'm using the substring/findstring combo as such:
( Substring ( [ mydata ] , FINDSTRING ( "." , [mydata] ) + 1, 5 ) )
So I would expect this to look for the "." and pull the 5 characters after that.. but alteryx is just pulling the first 5 characters of my data instead.
Any idea of what I'm doing wrong?