I try but not work, i insert this =HYPERLINK("#'Sheet1'!A"&MATCH("CustomerA",A:A,0),"CustomerA")Sure, try something like:
Code:=HYPERLINK("#'Sheet1'!A"&MATCH("String to Find",A:A,0),"What to display")
You Are Right, Thank YouProbably the sheet name.
Try this more generic approach: =HYPERLINK("#'This Sheet Name'!A"&MATCH("CustomerA",'This Sheet Name'!A:A,0),"CustomerA")
where This Sheet Name is the name of the tab where you're searching for Customer A.