View Single Post
 
Old 06-27-2015, 07:18 AM
tinfanide tinfanide is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2011
Posts: 312
tinfanide is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
Simpler still:
=MIN(IF(($A$1:$A$6<>0)*($A$1:$A$6<>1),$A$1:$A$6))
or, if you can only have integers of 0 or more:
=MIN(IF($A$1:$A$6>1,$A$1:$A$6))
either as an array formula.
Yes, with the use of asterisk, it works.
But could I ask why mine with the use of the "AND" operator doesn't work?
Reply With Quote