Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 49 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 287 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.5K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 110 Oracle Analytics and AI Trainings
- 21 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Filter using presentation variable All values
Hi All
I have a date prompt which am using it on a measure column with "Filter Using" function. The syntax am using is
The date prompt has "All Column Values" by default with multi select option.
With this syntax Filter( sales using order date=@{date_variable}) when I select multiple values, the columns works as expected but it fails when All Column Values is selected.
How do I make it work for All Column Values.
Thanks
Answers
-
I just answered this exact question from "3715500". Here's my answer:
"All Column values" passes a null value to the filter. In your filtered column, you can try a case statement along the lines of:
CASE WHEN '@{order date}'='' THEN sum("sales Price") ELSE Filter( "Sales price" using "order date" in (@{order date}) ) END
Jerry
0
