bottom of column value retrival

  • Thread starter Thread starter Alan
  • Start date Start date
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
 
Alan,

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

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

John
 
Back
Top