Hi All,
I have the following code:
SELECT q21coding, COUNT(q21coding) AS Count
FROM `tresults_acme`
WHERE q21 IS NOT NULL AND q21 <> ''
GROUP BY q21coding
ORDER BY Count DESC
It brings back the following:
q21coding Count
Difficulty in navigating/finding content 53
Positive comments 28
Suggestions for improvement 14
Inappropriate content/use 13
Improve search facility 6
Include information about staff and teams 5
Content needs updating 4
Other 30
You'll notice that Other is the second one down - is there a way of ensuring that Other is ALWAYS at the bottom regardless of the Count size?
Thanks,
Homer