Finding First Empty Cell in a Column

  • Thread starter Thread starter TomHull
  • Start date Start date
The array formula:

=ADDRESS(MIN((IF(ISBLANK(A1:A99),ROW(A1:A99)))),COLUMN(A:A))

should be entered with CNTRL-SHFT-ENTER rather than just the ENTER key.
 
For cell address..(normal entered)
=ADDRESS(SUMPRODUCT(MATCH("",A1:A100&"",0)),COLUMN(A1:A100))

If this post helps click Yes
 
Very nice
--
Gary''s Student - gsnu200908


Jacob Skaria said:
For cell address..(normal entered)
=ADDRESS(SUMPRODUCT(MATCH("",A1:A100&"",0)),COLUMN(A1:A100))

If this post helps click Yes
 
Thanks. Could be even the below which is a bit more easy to understand..

=SUMPRODUCT(MATCH(TRUE,A1:A100="",0))

If this post helps click Yes
 
Back
Top