Excel - formula last data cell

J

John S

I am looking for a way to create a formula that will access the last cell
with data in a column or row.

I a have a spreadsheet and the information where the last data is changes as
i update or copy in new data. I want a formula that will always give me the
results of the last cell in a column that contains a value.

Thanks for your help
 
J

Jacob Skaria

The below will work for Col A. Adjust to suit
=LOOKUP(2,1/(Sheet1!A1:A65535<>""),Sheet1!A1:A65535)

If this post helps click Yes
 
M

Mike H

Hi,

last value in row 1
=LOOKUP(2,1/(1:1<>""),1:1)

Last value in column A
=LOOKUP(2,1/(A:A<>""),A:A)

Mike
 

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