Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Min() Function

I would like to get the minimum number but greater than ZERO.

how to do it using expression?

=Min(min(x)>0)

8 Replies
tresesco
MVP
MVP

Try:

=Min({<x={'>0'}>} x)

Chanty4u
MVP
MVP

May be try this too


=min ({<X > 0 >} X)


or


min ({<X -= {'0'}>} X)

surendraj
Specialist
Specialist

May be this..

Min({<x={">0"}>} x)

Chanty4u
MVP
MVP

or this too

Min({1<X={">0"}>} X)

sunny_talwar

You have got some good answers above, but in case they don't provide what you wanted, would you be able to elaborate on what exactly are you looking to get with an example and desired output?

Anonymous
Not applicable
Author

Hi Hussain,

You can try as follows,

Min(if(X>0,X))

Not applicable
Author

I'm not getting the right value from the above

sunny_talwar

Would you mind sharing more details? What do you have and what are you looking to get?