G
Guest
I have a table ("tblExample") of property information. Property is identified
by discreet serial numbers located in the "strData" field. Because other
people are going to use the database, I prefer not to separate the serials
into three fields to hold prefixes, numbers, and suffixes.
The data looks like this:
NMC10000
NMC10001
NMC9998
NMC9999
NMC9999a
and I would like it to sort like this:
NMC9998
NMC9999
NMC9999a
NMC10000
NMC10001.
I've tried mid(), inStr(), etc, but I can't seem to make anything work. Any
suggestions?
by discreet serial numbers located in the "strData" field. Because other
people are going to use the database, I prefer not to separate the serials
into three fields to hold prefixes, numbers, and suffixes.
The data looks like this:
NMC10000
NMC10001
NMC9998
NMC9999
NMC9999a
and I would like it to sort like this:
NMC9998
NMC9999
NMC9999a
NMC10000
NMC10001.
I've tried mid(), inStr(), etc, but I can't seem to make anything work. Any
suggestions?