Custom Radio buttons in obiee - Page 2 — Oracle Analytics

Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Custom Radio buttons in obiee

81
Views
14
Comments
2»

Comments

  • Robert Angel
    Robert Angel Rank 8 - Analytics Strategist

    Sure, and the UK voted for Brexit and the Americans for Trump - mass approval does not validate a bad idea.

  • [Deleted User]
    [Deleted User] Rank 2 - Community Beginner

    Not saying it does just that I am less than surprise to hear this.

    And....flat earth

  • 2709444
    2709444 Rank 3 - Community Apprentice

    Thank you @Christian Berg and @Gianni Ceresa. Your suggestions helped me. But, instead of using CASE.. WHEN in "Edit Formula", I directly passed the presentation variable that had the value of "Column 1" and "Column 2". I was able to achieve the result. Can you please tell me how the same can be accomplished using CASE... WHEN?

  • Well, a CASE WHEN is just a condition.

    CASE WHEN '@{pvMyVariable}{#DEFAULT-VALUE#}' = 'Your value for col 1' THEN "your table"."your column 1"

    ELSE "your table"."your column 2"

    END

    The difference is that the values of the radio button are more "friendly" than the real name of the columns.

    But it's the same thing in the end.