My database tracks computer assets. The assets are organized according to type, i.e. laptop, desktop, etc. Each asset type is associated with an ID number :
(this example comes from a table)
ASSET CATEGORY ID | ASSET CATEGORY
1 Laptop
2 Desktop
When I display them in a report, it sorts the category according to the ID number, but I want it to sort them alphabetically. How do I do this?
(this example comes from a table)
ASSET CATEGORY ID | ASSET CATEGORY
1 Laptop
2 Desktop
When I display them in a report, it sorts the category according to the ID number, but I want it to sort them alphabetically. How do I do this?