Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am very new to qlikview and need some probably easy help. I have the following fields: Employee_ID, Position, Category, Skill/Trait.
In my current chart, I want the chart to change based on selections in all fields above EXCEPT Skill/Trait. I want a specific selection under Skill/Trait to be locked. But this is only for one chart.
My current expression (see below) does what I need it to do except lock the Skill/Trait field selection.
Count({<[Skill/Trait]={'Straightforwardness'}>}{<Score={">0"}>}Score)
What am I doing wrong?
Thank you!!
Try: Count({<[Skill/Trait]={'Straightforwardness'},Score={">0"}>}Score)
If that's doesn't do what you want you'll have to explain what you expect to happen. A small Qlikview document that demonstrates the problem would be useful.
Try: Count({<[Skill/Trait]={'Straightforwardness'},Score={">0"}>}Score)
If that's doesn't do what you want you'll have to explain what you expect to happen. A small Qlikview document that demonstrates the problem would be useful.
try this
Count({< [Skill/Trait] = {'Straightforwardness'}, Score={">0"} >} Score)
Thank you! I figured it was something simple!