简体   繁体   中英

Excel formula to return earliest date in a range & ignores blank cells

I was able to use the MIN function to return earliest date in a range, but I also found that it returns a default excel date (12/30/1899) when the range of cells are empty. Is there another way to avoid the default date for blank cells and return blank?

For example: Range 1 7/1/2014 7/2/2014 6/30/2014

Result = 6/30/2014

Range 2 (cells are blank because they're still waiting for input) ... ... ...

Result = 12/30/1899

这应该工作

=If(Min(A:A) > 0, Min(A:A), "")

Another formula approach would be to use SMALL rather than MIN - SMALL will return an error if there are no dates in the range (rather than zero) so you can clean the error up with IFERROR , eg

=IFERROR(SMALL(A1:A100,1),"")

....or you can retain your current formula with a simple MIN and just custom format the result field so that zeroes don't display, eg custom format as

mm/dd/yyyy;;

Note the two semi-colons - those must be included

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM