Auto-copy the last entry in a column to a new cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to auto-copy the last calculated result in a column, to a specific
cell. The column can be any length but not all cells in the column will
contain data, I only want the last result.
 
Hi!
I want to auto-copy the last calculated result in a column

Does "calculated" mean that it's a numeric value?

With the column in question being column A, try this:

=LOOKUP(9.99999999999999E+307,A:A)

Biff
 
=OFFSET(A1,MAX(IF(A1:A1000<>"",ROW(A1:A1000)))-1,)
array entered (Ctrl+Shift+Enter) in the cell you want.

Modify A1000 to suit your needs or A.

HTH
GerryK
 

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

Back
Top