I am attempting to use 2 formulas to separate an address that is comma deliminated, but the formula continually misses the mark.
The formulas in use:
Street address: =IFERROR(LEFT(Address@row, FIND(",", Address@row) - 1), "")
City, State, Zip: =IFERROR(RIGHT(Address@row, FIND(",", Address@row) - 1), "")
The Street address formula works fine, it is the second formula using RIGHT doesn't appear to work - it will remove portions of the address and I cannot figure out why. See screenshot.
Any ideas?