4

i'm new to Analysis Services. I have created a dimension on a boolean column. Now users want to have 'yes' and 'no' instead of 'true' and 'false' as result. Thanks.

Tim Schmelter
  • 450,073
  • 74
  • 686
  • 939

1 Answers1

7

Create a calculated column in your DSV which provides the label you want.

case when column = 0 then 'No' else 'Yes' end
Neil Knight
  • 47,437
  • 25
  • 129
  • 188