excel 2007 - Find cell address and add a hyperlink based on a tab name -
i have multiple tab (200+) workbook each tab has specific 3-5 digit name. tab's name goes a1 of each respective tab via formula =right(cell("filename";a1);len(cell("filename";a1))-find("]";cell("filename";a1);1))
working ok.
i need a1's become clickable (hyperlink) jump me specific cell in first tab (main) in workbook, have column of tab names listed (c6:c280 & growing). plan -
=hyperlink(**xxxxxx-add_here-xxxxxxxxx**;right(cell("filename";a1);len(cell("filename";a1))-find("]";cell("filename";a1);1)))
tried adding (#'main'!c)&match(right(cell("filename";a1);len(cell("filename";a1))-find("]";cell("filename";a1);1)));main!c6:c280;0)
, there mistake somewhere.. pls correct or suggest better/simplier option. thank :)
this shared file, no vba/macros/conditional formatting, etc allowed.
=hyperlink("#main!c"&match((right(cell("filename";a1);len(cell("filename";a1))-find("]";cell("filename";a1);1)))*1;main!c:c;0);right(cell("filename";a1);len(cell("filename";a1))-find("]";cell("filename";a1);1)))
ok, couple days fiddling , came solution myself. above string works. looks issue formatting when tab name multiplied 1 (thus making number) starts working. go figure..
Comments
Post a Comment