Hi All,
I have a column [TEXT]
In it may be something like the below in random order -
word1 word2 PID#XXXXXX; word3 word4
PID#XXXXXX; word1 word2 word3 word4
word1 word2 word3 word4 PID#XXXXXX;
I would like to extract the entire word that begins with PID# into a new column [PID]
So that [PID] would just display PID#XXXXXX;
The PID#123456; word type will always be written with no gaps but may be of varying length.
Then I would like to validate that the format of this word with ends with ";"
[Validation] TRUE/FALSE or YES/NO <-- I can easily extract the final character and do an if statement here.
I have been playing around with formulas to return the PID# value but can't seem to return the entire word?
Any help is appreciated - thanks!