Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 213 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations 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