From: Cerberus on
How to find the smallest positive number among datas in Excel?
From: Bob Phillips on
Try

=MIN(data_rng)

--

HTH

Bob

"Cerberus" <Cerberus(a)discussions.microsoft.com> wrote in message
news:8616B833-5582-4FCE-A23C-5F10D577AF63(a)microsoft.com...
> How to find the smallest positive number among datas in Excel?


From: "David Biddulph" groups [at] on
=MIN(IF(A1:A6>0,A1:A6)) as an array formula (Control Shift Enter)
Adjust your range to suit.
--
David Biddulph


"Cerberus" <Cerberus(a)discussions.microsoft.com> wrote in message
news:8616B833-5582-4FCE-A23C-5F10D577AF63(a)microsoft.com...
> How to find the smallest positive number among datas in Excel?


From: Jacob Skaria on
Try the below to return the max positive from Col A

=MAX(0,A:A)

--
Jacob


"Cerberus" wrote:

> How to find the smallest positive number among datas in Excel?
From: Jacob Skaria on
I have misread your post..Refer the post from David...

--
Jacob


"Jacob Skaria" wrote:

> Try the below to return the max positive from Col A
>
> =MAX(0,A:A)
>
> --
> Jacob
>
>
> "Cerberus" wrote:
>
> > How to find the smallest positive number among datas in Excel?