Currently the combo box is displaying the data sorted by Category ID and I need it to sort by Category. Below is my Query...
Select Top 1 "(All)" as Category, 0 as CategoryID from tlkCategory
ORDER BY tlkCategory.Category
UNION ALL SELECT tlkCategory.Category, tlkCategory.CategoryID
FROM tlkCategory;
Select Top 1 "(All)" as Category, 0 as CategoryID from tlkCategory
ORDER BY tlkCategory.Category
UNION ALL SELECT tlkCategory.Category, tlkCategory.CategoryID
FROM tlkCategory;