Hello, 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.
+2
A:
Create a calculated column in your DSV which provides the label you want.
case when column = 0 then 'No' else 'Yes' end
Ardman
2010-08-26 09:43:51
Thanks. I figured it out myself a few minutes ago.
Tim Schmelter
2010-08-26 10:12:32