Excel equation question

  • Thread starter Thread starter Jackie
  • Start date Start date
J

Jackie

How can you use the( =small) equation using dates with cells that have a
zero. I want the equation to ingnore cells with zero and only look at cells
with a date.

i.e
Last TRN Last Receipt Last Issue Last Ship
20080506 20080307 0 20080229
 
Use a COUNTIF() to count the zeros +1...as below

=SMALL(A1:A10,COUNTIF(A1:A10,0)+1)

If this post helps click Yes
 
Back
Top