简体   繁体   English

excel超链接vlookup部分字符串匹配

[英]excel hyperlink a vlookup partial string match

I have a VLOOKUP formula for a partial string match like this: 我有一个VLOOKUP公式,用于部分字符串匹配,如下所示:

=VLOOKUP(CONCATENATE("*",B3,"*"),$A$2:$A$3,1,FALSE) 

which results in 2013-BROWN.TOM.PDF 结果在2013年-BROWN.TOM.PDF

I want to hyperlink the result of the VLOOKUP like this: 我想像这样超链接VLOOKUP的结果:

C:\\JP\\TEST\\2013-BROWN.TOM.PDF C:\\ JP \\ TEST \\ 2013-BROWN.TOM.PDF

It seems like you could accomplish this by simply adding that data into your formula - Something along the lines of: 看来您可以通过简单地将数据添加到公式中来完成此任务-类似:

=HYPERLINK("C:\JP\TEST\" & VLOOKUP(CONCATENATE("*",B3,"*"),$A$2:$A$3,1,FALSE))

But if I'm not understanding your question, please clarify... 但是,如果我不明白您的问题,请澄清一下...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM