Last Used Cell Formula

BNatale1

New Member
Joined
Jan 14, 2009
Messages
2
I'm looking for a formula to return the address of the last used cell in the same workbook but on a different sheet:

So I have a summary tab and nine other tabs, all data in the nine tabs are in column A. As an example, in the 9th tab the last used cell is A28; which shows: " 5 Dir(s) 87,313,903,616 bytes free"...I want to be able to pull, on the summary tab, that tab 9 has "5 Dir(s)"; so I need to find the address of the last used cell and then apply a mid() formula to extract the "5 Dir(s)"...is this possible?

Thanks!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I'm looking for a formula to return the address of the last used cell in the same workbook but on a different sheet:

So I have a summary tab and nine other tabs, all data in the nine tabs are in column A. As an example, in the 9th tab the last used cell is A28; which shows: " 5 Dir(s) 87,313,903,616 bytes free"...I want to be able to pull, on the summary tab, that tab 9 has "5 Dir(s)"; so I need to find the address of the last used cell and then apply a mid() formula to extract the "5 Dir(s)"...is this possible?

Thanks!

This set up might be easier...

Y2:

=TRIM(LOOKUP(REPT("z",255),NinthTab!A:A))

X2:

=LEFT(X2,FIND(" ",X2)-1)
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,749
Members
448,989
Latest member
mariah3

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