我正在尝试将超链接(href =“url / category / H5 ”)文本(/ a)添加到单元格 <的开头em> B5 引用 H5 。我认为VBA宏可能是最好的方法,但如果只使用公式也可以。我的VBA不是很好。 :D如果你能提供帮助,请提前致谢!
答案 0 :(得分:1)
' here is the code that cn create hyperlink for you question.
'
Dim rng As Range
Set rng = ActiveSheet.Range("B5")
rng.Parent.Hyperlinks.Add Anchor:=rng, Address:="", SubAddress:= _
"H5", TextToDisplay:="this is long text"