Look up the last cell in a column

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

Guest

I am transfering a value in one cell to another worksheet. I need it to pull
the last cell in that column with data in it. The sheet that I need to pull
from is a living document and changes daily. Can someone help?
 
It does a little. This only thing is that I am pulling data from a sheet that
is in a completely different workbook than the one that I am working in.
 
You obviously need to change the workbook/sheet references to any formula
that is given to adapt to your real life situation

=LOOKUP(99^99,[Testme.xls]Sheet1!$G:$G)
 
Okay, I figured out how to lookup the last numerical value, how can i lookup
the last alpha numeric value?
 
If there are no blank rows in-between

=INDEX(A:A,COUNTA(A:A))

will return last value in A regardless of gender (numerical/text)


=LOOKUP(2,1/(A1:A65535<>""),A1:A65535)


will return last value where there can be empty/blank rows in-between
 
Okay, I figured out how to lookup the last numerical value, how can i lookup
the last alpha numeric value?

=LOOKUP(REPT("z",255),[Testme.xls]Sheet1!$G:$G)

Ken Johnson
 
Back
Top