I am trying to clean up a database where many components of address were entered into one field. The field contains CITY PROVINCE POSTAL CODE. The city may be any number of characters, the province is always 2 letters and the postal code 6. I was able to break out the province and postal code using Left function. But I cannot figure out how to extract the City, which may be any number of characters. I want to "trim off" the last 10 characters of the field, but the functions that I know about always give me what was "trimmed off" not what was "left behind".