Last number in a data string

jblair626

New Member
Joined
Oct 17, 2011
Messages
18
In a data table i have many columns and at the bottom I would like the last number displayed. so if i were to add data to it, ex 1-3 it would not change my LAST Row. But if I were to add data on 1-5 It would because jan 5th would then become my last input.


Date |Item 1|Item 2|Item 3|Item 4|
1-1 |12 |23 |12 |2
1-2 |11 |21 |29 |4
1-4 |13 |12 |19 |2
LAST |13 |12 |19 |2
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
In a data table i have many columns and at the bottom I would like the last number displayed. so if i were to add data to it, ex 1-3 it would not change my LAST Row. But if I were to add data on 1-5 It would because jan 5th would then become my last input.


Date |Item 1|Item 2|Item 3|Item 4|
1-1 |12 |23 |12 |2
1-2 |11 |21 |29 |4
1-4 |13 |12 |19 |2
LAST |13 |12 |19 |2

A5, just enter and copy across:

=LOOKUP(9.99999999999999E+307,A$2:A$4)
 
Upvote 0
One way:

LAST(offset(0,1): =INDEX(B:B,COUNTA(B:B)-1) and drag across.

This is a circular reference so you'd need to set iterations to 1.

If the LAST line is not at the bottom of the data, you could use:

=INDEX(B:B,COUNTA(B:B))
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,834
Members
449,192
Latest member
mcgeeaudrey

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