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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Prevent Text object from updating

Hello,

I am fairly new to Qlikview, so I am unsure about this. I have a text object with the following

='Current Ticket Assigned to Tech Support: ' & Count({$<[Status]={'Open','Working','Pending','Pending Third Party','Hold'}, Group={'Technical Support - Issues'}>}[Ticket Id])

I want this field to stay static. Currently if you click on other objects (all from the same data source) that number changes. I only want it to change when the script is reloaded to bring in the new results.

Labels (1)
1 Solution

Accepted Solutions
Nicole-Smith
MVP
MVP

Change the $ in the set analysis to a 1.  The 1 tells it to ignore selections in any of your fields:

='Current Ticket Assigned to Tech Support: ' & Count({1<[Status]={'Open','Working','Pending','Pending Third Party','Hold'}, Group={'Technical Support - Issues'}>}[Ticket Id])

View solution in original post

1 Reply
Nicole-Smith
MVP
MVP

Change the $ in the set analysis to a 1.  The 1 tells it to ignore selections in any of your fields:

='Current Ticket Assigned to Tech Support: ' & Count({1<[Status]={'Open','Working','Pending','Pending Third Party','Hold'}, Group={'Technical Support - Issues'}>}[Ticket Id])