I could use some assistance with extracting a word from a string.
Here is an example of the string.
200 East Broadway #Z001 (Jacob to Seymore)
This is the formula that almost has what I need but missing something.
MID({Transaction Name},
SEARCH("#",{Transaction Name}),
SEARCH("#",{Transaction Name},
SEARCH(" “,{Transaction Name})) -
SEARCH(” ",{Transaction Name}))
I’m trying to extract the apartment number (#Z001) from the string.
Thanks in advance to anyone that tries to help with a solution.