Skip to main content
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?

1 Solution

Accepted Solutions
sunny_talwar

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

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

Awesome

I am glad I was able to help