Retrieving date for last reading in table

Westbury

Board Regular
Joined
Jun 7, 2009
Messages
149
Hi,

I have a tsble of data and am trying to return the date from col C of the last entered reading in col F .

The formula
=ADDRESS(SUMPRODUCT(MAX((F3:F1919<>"")*ROW(F3:F1919))),3)

gives me the cell address $C$1809 which is the correct cell at present.

I've tried wrapping this into =TEXT( ,"D MMM YY") but it still returns the cell address.

What can I do to retrieve the date from C1809?

Thanks
Geoff
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Address is returning the address as text, you will need to use indirect to turn it into a cell reference
Code:
=TEXT(INDIRECT(ADDRESS(7,19)),"d/m/yy")
 
Upvote 0
You are welcome.

Just be aware that indirect is a volatile function, it will recalculate any time the sheet is recalculated. If you have a lot of volatile functions the sheet could take some time to recalculate.
 
Upvote 0

Forum statistics

Threads
1,223,956
Messages
6,175,613
Members
452,661
Latest member
Nonhle

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