Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to limit data in table

Hi

I'm new to qlik and just wanted to know if there is a way to limit the data shown in the table to PO Amounts over $5,000 that were not approved by either the Financial Controller or Purchasing Officer

Thanks

fd75498ca054421d9a3846c15df7469f.png

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi,

It may be like this below

Sample Data

sas.PNG

Sample App

res.PNG

Code used in expression

co.PNG

Store person is not reflected in sample application as per your requirement. Also you need to exclude null values in your dimension

Thanks!

Sharanya

View solution in original post

3 Replies
prieper
Master II
Master II

You may simply put this as your expression (aircode):

IF(SUM(IF(MATCH([Approved By Position], 'Purchasing Officer', 'Financial Controller), [Purchase Order Amount]) > 5000, SUM(IF(MATCH([Approved By Position], 'Purchasing Officer', 'Financial Controller), [Purchase Order Amount]))

Peter

Anonymous
Not applicable
Author

Hi,

It may be like this below

Sample Data

sas.PNG

Sample App

res.PNG

Code used in expression

co.PNG

Store person is not reflected in sample application as per your requirement. Also you need to exclude null values in your dimension

Thanks!

Sharanya

Not applicable
Author

Thanks for your help