picklefactory
Well-known Member
- Joined
- Jan 28, 2005
- Messages
- 508
- Office Version
- 365
- Platform
- Windows
Hi folks
I have a wb with an ever growing number of sheets. I also have a register on my first sheet storing details of each sheet contents. I'd like to create a hyperlink on the register page to jump straight to any sheet based on the sheet name stated in Col A. I've tried a number of things and failed spectacularly. I imagine I'm missing something stupid.... as usual. I'm trying to create a formula to take the sheet name from col A and create a hyperlink in Col G, my current failed formula is shown below.
Am I missing something stupid folks?
Thanks
I have a wb with an ever growing number of sheets. I also have a register on my first sheet storing details of each sheet contents. I'd like to create a hyperlink on the register page to jump straight to any sheet based on the sheet name stated in Col A. I've tried a number of things and failed spectacularly. I imagine I'm missing something stupid.... as usual. I'm trying to create a formula to take the sheet name from col A and create a hyperlink in Col G, my current failed formula is shown below.
Am I missing something stupid folks?
Thanks
Excel 2010 | |||||||||
---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | |||
3 | Sheet4 | Castings PLC | 14587 | 19/05/2015 | 860455 | Penta Pump Housing | SheetA3! | ||
4 | Sheet5 | Castings PLC | 14587 | 20/05/2015 | 844048 | Belt pulley modification | |||
5 | Sheet6 | Castings PLC | 14587 | 20/05/2015 | 1075841 | Brake cylinder bkt family | |||
Register |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B3 | =IF(ISERROR(INDIRECT("'"&$A3&"'!$C$3")),"",INDIRECT("'"&$A3&"'!$C$3")) | |
B4 | =IF(ISERROR(INDIRECT("'"&$A4&"'!$C$3")),"",INDIRECT("'"&$A4&"'!$C$3")) | |
C3 | =IF(ISERROR(INDIRECT("'"&$A3&"'!$C$4")),"",INDIRECT("'"&$A3&"'!$C$4")) | |
C4 | =IF(ISERROR(INDIRECT("'"&$A4&"'!$C$4")),"",INDIRECT("'"&$A4&"'!$C$4")) | |
D3 | =IF(ISERROR(INDIRECT("'"&$A3&"'!$C$10")),"",INDIRECT("'"&$A3&"'!$C$10")) | |
D4 | =IF(ISERROR(INDIRECT("'"&$A4&"'!$C$10")),"",INDIRECT("'"&$A4&"'!$C$10")) | |
E3 | =IF(ISERROR(INDIRECT("'"&$A3&"'!$C$5")),"",INDIRECT("'"&$A3&"'!$C$5")) | |
E4 | =IF(ISERROR(INDIRECT("'"&$A4&"'!$C$5")),"",INDIRECT("'"&$A4&"'!$C$5")) | |
F3 | =IF(ISERROR(INDIRECT("'"&$A3&"'!$C$6")),"",INDIRECT("'"&$A3&"'!$C$6")) | |
F4 | =IF(ISERROR(INDIRECT("'"&$A4&"'!$C$6")),"",INDIRECT("'"&$A4&"'!$C$6")) | |
G3 | =HYPERLINK("Sheet"&"A3"&"!") |