Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a 'Master' worksheet containing a list of the other worksheets in this
workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=INDIRECT("'"&A2&"'!A1)
where A2 holds the sheet name -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... I have a 'Master' worksheet containing a list of the other worksheets in this workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Bob,
Many thanks but I can't get this to work. I have played around with the " ' and ( ) but I can't seem to get the logic right. I also tried to insert a , before A1 but that didn't seem to help either. I'm probably doing something stupid! Regards Paul "Bob Phillips" wrote: =INDIRECT("'"&A2&"'!A1) where A2 holds the sheet name -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... I have a 'Master' worksheet containing a list of the other worksheets in this workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Paul,
The syntax is =INDIRECT(double-quote single-quote double-quote & A2 & double-quote single-quote double-quote ! A1 ) "Paul Condron" wrote in message ... Bob, Many thanks but I can't get this to work. I have played around with the " ' and ( ) but I can't seem to get the logic right. I also tried to insert a , before A1 but that didn't seem to help either. I'm probably doing something stupid! Regards Paul "Bob Phillips" wrote: =INDIRECT("'"&A2&"'!A1) where A2 holds the sheet name -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... I have a 'Master' worksheet containing a list of the other worksheets in this workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Chip,
Thanks. I followed this exactly - I think but it still tells me I have an error. The particular worksheet I tried it on is labelled - Accel_Lifts - and so I got: =INDIRECT("'"&Accel_Lifts&"'"!A1) But it comes up as a syntax error! Paul "Chip Pearson" wrote: Paul, The syntax is =INDIRECT(double-quote single-quote double-quote & A2 & double-quote single-quote double-quote ! A1 ) "Paul Condron" wrote in message ... Bob, Many thanks but I can't get this to work. I have played around with the " ' and ( ) but I can't seem to get the logic right. I also tried to insert a , before A1 but that didn't seem to help either. I'm probably doing something stupid! Regards Paul "Bob Phillips" wrote: =INDIRECT("'"&A2&"'!A1) where A2 holds the sheet name -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... I have a 'Master' worksheet containing a list of the other worksheets in this workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I omitted the trailing quote. You don't need to substitute the cell value,
Excel will do that, so use =INDIRECT("'"&A2&"'!A1") -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... Chip, Thanks. I followed this exactly - I think but it still tells me I have an error. The particular worksheet I tried it on is labelled - Accel_Lifts - and so I got: =INDIRECT("'"&Accel_Lifts&"'"!A1) But it comes up as a syntax error! Paul "Chip Pearson" wrote: Paul, The syntax is =INDIRECT(double-quote single-quote double-quote & A2 & double-quote single-quote double-quote ! A1 ) "Paul Condron" wrote in message ... Bob, Many thanks but I can't get this to work. I have played around with the " ' and ( ) but I can't seem to get the logic right. I also tried to insert a , before A1 but that didn't seem to help either. I'm probably doing something stupid! Regards Paul "Bob Phillips" wrote: =INDIRECT("'"&A2&"'!A1) where A2 holds the sheet name -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Paul Condron" wrote in message ... I have a 'Master' worksheet containing a list of the other worksheets in this workbook. The list will be added to regularly. I want to create a macro that when run will take the worksheet name that is highlighted in the 'master' list and GoTo cell A1 on the related 'Detail' sheet. Any help would be much appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
automatically appending newly added data on worksheet to a master list worksheet | Links and Linking in Excel | |||
How can I pull Cell value from Detail worksheet into Summary sheet? | Excel Worksheet Functions | |||
Summary worksheet reference to detail worksheet | New Users to Excel | |||
How can I link cell colours from worksheet to worksheet/workbook? | Excel Worksheet Functions | |||
how do i link a number of worksheets to one master worksheet? | Excel Worksheet Functions |