boblarson
Smeghead
- Local time
- Today, 05:45
- Joined
- Jan 12, 2001
- Messages
- 32,059
Your table isn't properly structured. Every discrete peice of data needs to be in its own field. You are jamming 2 peices of data (Category Number and Variety) into SGCatNo and then doing some Frankenstein sorting to overcome it. You need to break this data out into 2 fields, one for the numeric Category Number value and one for the text Variety value. You do that and sorting this like you want it becomes trivial.
Good points