G
Guest
Address field contains "1234 Hickory Drive #45".
Mid([Address], InStr([Address], " ") + 1)
Works wonderfully to select "Hickory Drive #45". (excludes the "1234")
Now I want to include the option to exclude anything past an "#" character.
Example "1234 Hickory Drive #45" . Only extract the "Hickory Drive" not the
#45.
Thanks!
Mid([Address], InStr([Address], " ") + 1)
Works wonderfully to select "Hickory Drive #45". (excludes the "1234")
Now I want to include the option to exclude anything past an "#" character.
Example "1234 Hickory Drive #45" . Only extract the "Hickory Drive" not the
#45.
Thanks!