C
cdolphin88
Hello,
I have the query below that I used an IIF statement to classified the
different band..
Is that possible to show me in only one column the different
classification? Because now it shows in 5 different column..
the query I'm using is like this:
SELECT band, IIF(band = 1, 'Very Low Priority'), IIF(band = 2, 'Low
Priority'), IIF(band = 3, 'Medium Priority'), IIF(band = 4, 'High
Priority'), IIF(band = 5, 'Very High Priority')
FROM Table1;
Cheers
I have the query below that I used an IIF statement to classified the
different band..
Is that possible to show me in only one column the different
classification? Because now it shows in 5 different column..
the query I'm using is like this:
SELECT band, IIF(band = 1, 'Very Low Priority'), IIF(band = 2, 'Low
Priority'), IIF(band = 3, 'Medium Priority'), IIF(band = 4, 'High
Priority'), IIF(band = 5, 'Very High Priority')
FROM Table1;
Cheers