Okay, I know I've done this before, but I can't remember how. I have a combobox with a row source of existing values of that field. One of those options is "None," which I want to show up as the last option. So the existing values are:
"Adam"
"None"
"Zak"
But I want:
"Adam"
"Zak"
"None"
My SQL statement gives me an error that says "ORDER BY clause...conflicts with DISTINCT." Here is my SQL statement:
How do I take care of this?
"Adam"
"None"
"Zak"
But I want:
"Adam"
"Zak"
"None"
My SQL statement gives me an error that says "ORDER BY clause...conflicts with DISTINCT." Here is my SQL statement:
Code:
SELECT DISTINCT tblOpenItems.Legal
FROM tblOpenItems
WHERE (((tblOpenItems.Legal) Is Not Null))
ORDER BY iif(tblOpenItems.Legal="None","ZZZ",tblOpenItems.Legal)