View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom Peo Sjoblom is offline
external usenet poster
 
Posts: 3,268
Default Look up the last cell in a column

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


--
Regards,

Peo Sjoblom


"BAKERSMAN" wrote in message
...
Okay, I figured out how to lookup the last numerical value, how can i
lookup
the last alpha numeric value?

"Toppers" wrote:

=LOOKUP(99^99,G:G)

will get the last NUMBERIC value in column G.

Does this help?


"BAKERSMAN" wrote:

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?