Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I would like to remove some selections in a set analysis, using a variable.
I tried this:
- the variable: vSelection = 'customer=,offer=,country=,city=' for example
- the set analysis: {<$(vSelection)>}
But it doesn't work (no selection removed).
It works when there is only one field in the variable :
- vSelection='customer'
- set analysis = {<$(vSelection)=>}
(the selection in customer is removed)
I have lots of selections to remove for some measure, and I would like to use a variable, in order to more rapidly and easily adjust the list of selections to remove.
How can I do this please?
Thanks!
Have you tried removing the ' '.
variable:
vSelection = customer=,offer=,country=,city=
set analysis
{<$(vSelection)>}
seems to work for me.
Could you post a small sample QVW that demonstrates your issue?
Have you tried removing the ' '.
variable:
vSelection = customer=,offer=,country=,city=
set analysis
{<$(vSelection)>}
How are you defining the variable
Seems working for me, Here you are ignoring the Customer
Variable define
Output seems this?
It works without the ' ' in the variable
thanks!