Question

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.

Was it helpful?

Solution

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

case when column = 0 then 'No' else 'Yes' end
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top