Hello,
We have a prompt on a column that sets a presentation variable, pv_XYZ.
In the analysis, we have two columns and we want to set a filter like this:
( column1 is equal to @{pv_XYZ)
or column2 is equal to @{pv_XYZ} )
When we run this, we select the value of "turkey" for pv_XYZ.
The results SQL looks like this:
( column1 is equal to "turkey"
or column2 is equal to @{pv_XYZ} )
Any idea why column2 shows literal string for the presentation variable?
Thanks!
Dennis