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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help with Set Analysis

Hi, I am trying to get my expression to count the number of invoice numbers (Invoice No) that's ages (Confusingly enough the title of the age column is Aged>30) are over 30 days.   I am new to Qlikview and it appears a Set Analysis is what I need to do but I'm struggling.

2 Replies
reddy-s
Master II
Master II

Hi Katie,

Use this expression:

count({< [Aged>30] = { ">30" } >} [Invoice No])

- Sangram

Kushal_Chawda

create the flag in script

if([Age>30] >30,1,0) as Age30_Flag

Now use the set analysis like below

=count({<Age30_Flag={'1'}>}[Invoice No])