How can I set conditional filter in load script page? I have tried Case When, but it gives me error. Is there anyone who has suggestions?
Filter "xx"."yy" = <%= option1%> (it works)
i want to do multiple conditions like that in component filter
case when <%=option1> = 'a' than Filter "xx"."yy" = 'value' ;
case when <%=option1> = 'b' 'than Filter "xx"."yy" = 'value2' end
Is there any way to add conditional filter in the component filter section?