EXCEL FORMULA

S

SURESH

Dear friends,

anyone can tell me which formula will help me to know which is the last
entered cell.

For example:
My data is A1:p109

so the formula should say the last entered row/cell is 109

thanks in advance

best regards,
suersh tp
 
D

Don Guillett

try this array formula (entered with ctrl+shift+enter) for either text or
number
=INDEX(A1:A65535,MAX((ISNUMBER(A1:A65535)+ISTEXT(A1:A65535))*ROW(INDIRECT("1
:65535"))))
 
D

Don Guillett

Since you asked for the row number instead, use this
=MAX(IF(ISBLANK(A1:A10000),0,ROW(A1:A10000)))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top