Referencing cells with formulas results in blank cell.

R

rdp

I am trying to make data from the last used cell in a column appear in
another cell at the top of the same column. Another user gave me the formula
=INDEX(A:A,MATCH(10^10,A:A)) and this works fine unless the cells in the
column have formulas in them, in which case the result is a blank cell.

Thank you.
 
T

T. Valko

That formula works just fine.

Do the formulas return 0s and you have 0 display turned off?

A shorter version of that formula:

=LOOKUP(10^10,A:A)

Even better to use a constant for the lookup_value:

=LOOKUP(1E10,A:A)
 

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