I’m writing a database that uses a query to put a list of names in alphabetical order, and I’ve encountered a problem. The Base program’s sort function doesn’t recognize spaces between words. When alphabetizing by surname, “Smith John” should come before “Smithfield Jane”, but instead those names appear in the opposite (i.e. wrong) order.
This raises two related questions. First, is there any way to get Base to recognize spaces between words instead of ignoring them? And second, if not, is there a way to replace all spaces in the name field with a non-alphabetic character, such as a comma or number, without having to rewrite thousands of records one at a time?
Thanks in advance for any help.