Hyperlink custom link_location formula

心不动则不痛 提交于 2019-12-12 00:24:29

问题


I want to make custom link_location formula

= HYPERLINK("file:///C:\Users\PC\Desktop\File01.pdf", B1)

I have a column B where File01, File02,...... is listed.

I want to create hyperlink to locate the file on my Hard-disk with the same name as seen in above hyperlink.

How to Create a common hyperlink in column C where I don't have to change the file name manually. It will just take the value of Column B.

= HYPERLINK("file:///C:\Users\PC\Desktop\B1.pdf", B1)

回答1:


Try:

=HYPERLINK("file:///C:\Users\PC\Desktop\" & B1 & ".pdf", B1)



来源:https://stackoverflow.com/questions/20469599/hyperlink-custom-link-location-formula

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!