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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

expression to pull avg acv greater than zero

Hi guys,

fairly new to the qlik community trying to figure out an expression to pull our field 'acv extended price' when it's greater than zero. Any thoughts?

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this:

=Sum({<[acv extended price] = {'>0'}>}[acv extended price]) or

=Sum(If([acv extended price] > 0, [acv extended price], 0))

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

May be this:

=Sum({<[acv extended price] = {'>0'}>}[acv extended price]) or

=Sum(If([acv extended price] > 0, [acv extended price], 0))

Not applicable
Author

thank you very much! Makes sense and worked great!

sunny_talwar
MVP
MVP

Awesome

I am glad I was able to help