Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hello All,
I am try to do some coding to open to a certain tab in a different workbook. I am creating the sheet tab name that I need to open with concatenate (the name has three parts to it based on what the user select). The cell has a name (sheettab1but the value in the cell will change). Is it possible to use the value in sheettab1 to open to a certain tab in a different workbook? Thanks |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
This assumes that the "other" workbook (a.xls) has already been opened.
We get the tab name from the Named Cell, activate a.xls and activate the proper tab: Sub Macro1() s = Range("sheettab1but").Value Windows("a.xls").Activate Sheets(s).Activate End Sub -- Gary''s Student - gsnu200790 "akay71" wrote: Hello All, I am try to do some coding to open to a certain tab in a different workbook. I am creating the sheet tab name that I need to open with concatenate (the name has three parts to it based on what the user select). The cell has a name (sheettab1but the value in the cell will change). Is it possible to use the value in sheettab1 to open to a certain tab in a different workbook? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I set a workbook to open always with a certain sheet I wan | Setting up and Configuration of Excel | |||
Search open sheets in workbook and insert into open sheet | Excel Discussion (Misc queries) | |||
How do I open a workbook in a specific sheet | Excel Discussion (Misc queries) | |||
Open workbook on same sheet? | Excel Discussion (Misc queries) | |||
Open workbook at a particular sheet | New Users to Excel |