Hi. I have a fairly simple query and I need to change the name of the results in one field. I have a field called ' Org'. This field has three options. Conasp, Mexico and aspen. I have the following case statement but it won't work.
Case
When org = 'conasp' then ' Utica'
When org = ' aspen' then ' Denver'
When org = ' Mexico' then 'Mexico'
Else ' null'
End
Can someone help me? My query runs it just will not change the names. It uses the original names.
Thank you !!
Case
When org = 'conasp' then ' Utica'
When org = ' aspen' then ' Denver'
When org = ' Mexico' then 'Mexico'
Else ' null'
End
Can someone help me? My query runs it just will not change the names. It uses the original names.
Thank you !!
Comment