Categories
- All Categories
- 76 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 59 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
Inline Prompt Issue
Hi,
I was trying to display an inline prompt on top of an analysis and it works fine using Presentation Variable but if the Prompt is not selected then it leaves the variable name as is "@{PTable}" which Users dont want so is there a way to not show anything if not selected
OBIEE Version: 12.2.1.3.0
Thanks,
Kash
Answers
-
CASE WHEN '@{PTable}{SomeRandomDefault}' = 'SomeRandomDefault' THEN 'WhateverYouWantToShow' else '@{PTable}{SomeRandomDefault}' END
0 -
Nice and let me try
0 -
I tried the CASE statement but its not working and can you elaborate as to how it would be used? I am using a Static Text box on top of the analysis?
0 -
In a static text view you can only show the variable itself. Not the whole formula.
0 -
No reason you couldn't make your default value the thing you wanted to show, and change the filter on that column using a case statement to change it to the column in question (so it is always equal itself - if you want your default to show all values!)
0