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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
kevbrown
Creator II
Creator II

Min >0

Hi

I have a rang of number, some negative some positive and I want to pull out the smallest which is greater than Zero

so

Field

-50

-20

-5

2

5

8

50

I want to pull out 2 from my data, I've tried =min ({<Field > 0 >} Field) but it doesn't like it

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

min ({<Field ={'>0'} >} Field)

View solution in original post

5 Replies
swuehl
MVP
MVP

Try

=min ({<Field = {">0"} >} Field)

tresesco
MVP
MVP

Try like:

min ({<Field ={'>0'} >} Field)

Kushal_Chawda

min(if(Field>0,Field))

balabhaskarqlik

Try like this:

=Min(If(Field>0,Field))

ils4nt0
Contributor II
Contributor II

this works! you male my day!