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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Try like:

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

View solution in original post

5 Replies
swuehl
Champion III
Champion III

Try

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

tresB
Champion III
Champion III

Try like:

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

Kushal_Chawda

min(if(Field>0,Field))

BalaBhaskar_Qlik

Try like this:

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

ils4nt0
Contributor II
Contributor II

this works! you male my day!