Translate Dimension Values (multidimensional)

  • Hello, is there a method to translate the values of a dimension?

    Example: dimension called diabetic with an IS_DIABETIC column and two values YES and NO I would like to do a translation in French of the values 'OUI' and 'NON' instead of YES / NO

    THANKS

  • A simple CASE expression would suffice for this, something along the lines of:

    CASE WHEN IS_DIABETIC = 'YES' THEN 'OUI'
    WHEN IS_DIABETIC = 'NO' THEN 'NON'
    ELSE 'Whatever you want your default to be' END

     

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply