Hi All,
I have a graph and two radio buttons, one is Month-To-Date and another one is Year-To-Date. Based on user specific selection the graph should change in same page.
Thanks in advance.
Sure, and the UK voted for Brexit and the Americans for Trump - mass approval does not validate a bad idea.
Not saying it does just that I am less than surprise to hear this.
And....flat earth
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.