Discussion Board for collaboration related to QlikView App Development.
I want to be able to conditionally display my expressions based on my list box selections. I've tried using wildmatch but can't get each expression to respond independently.
I want the following conditions to apply
Only 'Sales' selected = display only Sales expression
Only 'L12 Sales' selected = display only 'L12 Sales' expression
Both selected = show both selections
The opposite result for when they are not selected.
At the moment I'm struggling as when L12 Sales is selected/deselected both L12 Sales and Sales respond
In the future I have will have multiple selection options with 'sales' in the name. I will want all expressions to be controlled independently by one selection each only.
Try below expressions
=WildMatch('@'&GetFieldSelections(subheader, '@')&'@','*@Sales@*')
=WildMatch('@'&GetFieldSelections(subheader, '@')&'@','*@L12 Sales@*')
What does that mean?
This is to put some extra character between values so that 'Sales' could be separated from a values like 'XXXSalesYYY'. Is it not working as desired for you?
Brilliant that works. Any change you could explain the logic through each step?
Sorry I'm very new to QV