How do I create a prompt that is not related to any filter?
I would like to use the value entered by the user to implement something similar to a case statement in SQL Server:
so if user enters “USD” at the prompt: the last column of my report table will show values from the ValueInUSD universe column, if user enters “CND”: the column will show values from the ValueInCND universe column.
Do you have an access to the universe? If yes then you can create a predefined filter there that uses @prompt() function and that is always true, it means it will not filter any records when it’s used. A pseudo-code would be something like:
@prompt(...parameters go here...) = @prompt(...parameters go here...)