Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Chart: Need help with a conditional sum

I have a set of Order transactions. There is a transaction type that indicates whether the Order is a sale or return. I would like to create a chart that shows Returns. In other words, I would like to filter my Orders to only display the Sum of Orders where TransactionType='RP'

How would I do this?

(Thanks in advance fo your help)

2 Replies
Not applicable
Author

Hi,

You could do this with Set analysis.

Try this ;

sum( {$<TransactionType = {'RP'}>} order)


Best regards.

Not applicable
Author

Perfect! Thank you!