Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Urgent help required.
I have a multi tab qlikview dashboard report and customer have asked to add couple of more tabs in the report.
His requirement is that when user clicks on the report tab one of the filter values should be selected automatically.
I know this can be achieved via the Trigger option in the Sheet properties, but my values are like below
If I put value as below
it will take '10,000-25,000' selection and given the resultant values in graphs. Bu the moment I concatenate
'10,000-25,000' & '25,000-50,000' it will select nothing.
Please let me know how I can concatenate it to select all the three values of the filter as in first figure. I think the problem is the concatenation between string and numbers i.e. - and numerals.
You have to use this?
='(' & '10,000-25,000' & '|' & '25,000-50,000' & ')'
You have to use this?
='(' & '10,000-25,000' & '|' & '25,000-50,000' & ')'
='("10,000-25,000"|"25,000-50,000")'
(those are double quotes around each value)
If there are no spaces, you can also use (no = sign and single quotes)
("10,000-25,000"|"25,000-50,000")
In Select in Field Event write only this string will work for you
("10,000-25,000"|"25,000-50,000"|"50,000-100,000")
See Attached
Thanks,,
Thanks it worked..
thanks it worked...