Sheet Name

rhmkrmi

Active Member
Joined
Aug 17, 2012
Messages
341
Office Version
  1. 365
Platform
  1. Windows
Hello:How can I link a cell to a sheet name so that each sheet gets updated independetly?Thanks
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
what do you mean?

to link a cell to another sheet goes (sheet name, exclamation mark, cell)
=Sheet1!A1
 
Upvote 0
Hello:

I mean if the name of a sheet is "Test" I want to get the same value in let's say cell A20, I want to get the name of each sheet somewhere in the same sheet in one of the cells. I want to link the name of each sheet to one of the cells in the same sheet.

Thanks
 
Upvote 0
you need this formula to get the sheet name


=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,256)


and to return the whole path


=CELL("filename",A1)
 
Upvote 0
Hello.

List & Hyperlinks

Code:
Sub List_Worksheets_1()
Dim i As Long
For i = 1 To Sheets.Count
ActiveSheet.Hyperlinks.Add Anchor:=ActiveSheet.Cells(i, 1), _
Address:="", SubAddress:="'" & Sheets(i).Name & "'!A1", _
TextToDisplay:=Sheets(i).Name
Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,801
Messages
6,121,644
Members
449,045
Latest member
Marcus05

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