Dataset has a field which has either a '1' or a '2' or a '3'.
1 = "Make"
2 = "Buy"
3 = "Either"
I am currently using the IIF to return a either/or
Here's what I'm currently using -
=IIF(Fields!MAKEBUYCODE_I.Value = 1,
"Make","Buy/Either")
What I really
What's the 'Case When' equivalent in SRS expressions?
I want is to specify all 3 values and return the specific value - can IIF be used for more than a simple true or false?