Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
hjm35055
Partner - Contributor III
Partner - Contributor III

Lock a single field selection for 1 chart in Qlikview?

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!!

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

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.


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

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.


talk is cheap, supply exceeds demand
Anonymous
Not applicable

try this


Count({< [Skill/Trait] = {'Straightforwardness'}, Score={">0"} >} Score)

hjm35055
Partner - Contributor III
Partner - Contributor III
Author

Thank you! I figured it was something simple!