Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
H5を参照するセルB5の先頭にハイパーリンク (a href="url/category/ H5 ")text(/a)を追加しようとしています。VBA マクロがおそらく最良の方法だと思いますが、数式だけを使用して実行できる場合も同様です。私のVBAはあまり良くありません。:D お役に立てることがあれば、よろしくお願いします!
' 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"