Is there a way to determine the numerical start point of a specific text? For example, I'd like to create a custom project ID by combining a client's last name and the numerical value of their address. Since the numerical part of an address can be of any length between 1 and 5 digits, I would typically look for the space between the address number and street name. I would then use the returned position to LEFT extract precisely what I need. The problem with a LEFT and RIGHT command, without a FINDSTRING option, is that it always assumes that the user knows exactly what they're looking for. Thank you.