Is there any formula to create a hyperlink in an excel to another sheet? -
here need do.
i have excel workbook many sheets. need work on 2 sheets- attributes_master , domain_details.
both have field in commmon - domain not in same order.
i need add hyperlink in domain column of attributes_master domain column of domain_master. there around 50,000 entries in column.
i know can know cell address in domain_master using match()
function. shortcut hyperlink done quickly?
the excel hyperlink() function takes string arguments. can build string arguments concatenating different elements.
a concrete formula bit hard without knowing workbook structure.
assuming want link cell on domain_master sheet, , assuming column "domain" in column on both sheets, try along lines of
=hyperlink("[linkdemo.xlsx]domain_master!a"&match(a2,domain_master!a:a,0),"click here")
adjust reflect workbook file name , column structure.
Comments
Post a Comment