Get the value of a cell from the bottom row in a column

rickscolaro

New Member
Joined
Jan 7, 2009
Messages
8
How can I get excel to find the value of a cell that always increases by one row for each entry. So if I have a running total, Excel will find the bottom value of that row and then return it ?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
To return the last numerical value in a range, try...

=LOOKUP(9.99999999999999E+307,Range)

Hope this helps!
 
Upvote 0
Hello and welcome to MrExcel.

Try

=INDEX(A:A,MATCH(9.99999999999999E+307,A:A))
 
Upvote 0
You just need to include the sheet name

=INDEX(Sheet1!A:A,MATCH(9.99999999999999E+307,Sheet1!A:A))
 
Upvote 0
Hey thanks. That worked great. I did use the =Lookup function first because that was the first on the list.. I am sure both work well though.. Is there an explanation, (if only for my own satisfaction) that that particular expression does that?
 
Upvote 0
I just tried the =Index() function and it worked equally well. In both formulas though, I substituted a range name for the actual cell address ranges and it seemed to work just great, I didn't have to put the sheet name in there after all. Thanks to both of you for you help.

rick scolaro
 
Upvote 0

Forum statistics

Threads
1,216,571
Messages
6,131,482
Members
449,653
Latest member
aurelius33

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top