Reference a sheet based off current sheet name

Excel_dan

New Member
Joined
Jan 18, 2017
Messages
12
I have set up sheets that are created in pairs for example sheet names 0024A and 0024B, I want to have a generic equation that will reference the other sheet. I can get the other sheet name by using:
Code:
=LEFT(MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255),4) & "A"
but when I add on something like
Code:
 & !$H$59
it gives an error. How would I reference the first sheet from the second no matter what the name is as long as it is the same with only the last letter changed?

Thank you.
-Dan
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
The problem with your additional line is that the ! is not in quotes.

=LEFT(MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255),4) & "A!" & $H$59
 
Upvote 0
When I put it in the way you have shown it is not giving me the error anymore, but it is showing "0024A!" but not what is in the cell H59 on sheet 0024A. There must be an additional issue with my syntax.
 
Upvote 0
Try
=INDIRECT(LEFT(MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255),4) & "A!H59")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,992
Latest member
prabhuk279

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