I have a dashboard that has several prompts that users may often drop values into (rather than going through the dropdown to select each value). For the purpose of this post, I'll just focus on 1 of the prompts (as they will all pretty much behave the same). That prompt will be for 'Address'.
Being that I am not sure what case the users will always enter the values, I'd like for my prompts to handle both upper & lower case inputs. My thinking for this was to:
(1) Create a variable prompt that populates a variable called 'vAddress'
(2) Have a filter (using the 'Convert this filter to SQL' option) in the report that is:
upper("Location"."Address") IN (upper(@{vAddress}))
Unfortunately, the above does not work. I get an error.
I also tried using the following for the filter:
upper("Location"."Address") IN (upper(cast(@{vAddress} as CHAR)))
This also returns an error.
Is there a better way of doing this?
Any help is greatly appreciated.