I want to make every that satisfy my condition to = 1400.
I wrote:
Select GLDV_Alt
Case
When gldv_alt_div_n = '1209', '1120' , '1401'
then '1400'
Else 0
End As 'Region South
from gldv
This works if my list is just one division, but not when it's a list of divisions.
Do I have to do a bunch of When operators?
Please help.
Open in new window