I'm trying to pull a set of numbers after a delimiter using "_1" as a delimiter, but in some values in the data this delimiter shows up one time before the one that I want to pull from. How would I use an if statement to do something like below:
if delimiter("_1") > 0 then start at delimiter("_1") position 1 (second instance) else start at delimiter("_1") position 0 (first instance)
Appreciate any help, thanks.
if delimiter("_1") > 0 then start at delimiter("_1") position 1 (second instance) else start at delimiter("_1") position 0 (first instance)
Appreciate any help, thanks.