Something like this, in say B1,
with the formula confirmed via CTRL+SHIFT+ENTER:
=MIN(IF(A1:A10>0,A1:A10))
--
Max
Singapore http://savefile.com/projects/236895
Downloads:19,500 Files:362 Subscribers:62
xdemechanik
---
RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================
I need a formula to show the lowest figure, but not 0 in an excel
spreadsheet.
So smallest positive? That'd mean > 0, but your subject line says > 1.
This can be done in general without array formulas as
=SMALL(range,COUNTIF(range,"<="&x)+1)
which returns the smallest value in range greater than x. That said,
the array formula
=MIN(IF(range>x,range))
is more efficient - faster recalc, uses fewer resources.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.