bottom of column value retrival

A

Alan

Hi,

I have a workbook with two sheets. i need one sheet to
retrieve a cell value (currency) at the bottom of a column.

the bottom of the column will move every few days.


How can i do this?

Mant Thanks
 
J

John Wilson

Alan,

Range("A" & Rows.Count).End(xlUp).Value

Will return the last non-blank cell value in Column A

John
 
F

Frank Kabel

Hi Alan
one solution (assuming your A is your column)
=INDEX(A:A,COUNTA(A:A))
Frank
 

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