I am returning values of a lookup table for a report.. The problem the values are to large to display on the report, so i would like to return abbreviations for the values..
For example:
I know the code above will not work.. but is what i would to do possibel?
For example:
Code:
Select txtTypeDesc,
iif(txtTypeDesc LIKE "High", "HIGH","")
iif(txtTypeDesc LIKE "LOW", "LOW', "")
iif(txtTypeDesc LIKE "MED", "MED", "") as txtTypeDesc
I know the code above will not work.. but is what i would to do possibel?