T TomHull Nov 9, 2009 #1 Hi, Is there a formula method to find the first empty cell in a column? Thanks, Tom
G Gary''s Student Nov 9, 2009 #2 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.
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.
J Jacob Skaria Nov 9, 2009 #4 For cell address..(normal entered) =ADDRESS(SUMPRODUCT(MATCH("",A1:A100&"",0)),COLUMN(A1:A100)) If this post helps click Yes
For cell address..(normal entered) =ADDRESS(SUMPRODUCT(MATCH("",A1:A100&"",0)),COLUMN(A1:A100)) If this post helps click Yes
G Gary''s Student Nov 9, 2009 #5 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 Click to expand...
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 Click to expand...
J Jacob Skaria Nov 9, 2009 #6 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
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