gpt4 book ai didi

vba - Excel VBA : How to autocreate hyperlink from cell value?

转载 作者:行者123 更新时间:2023-12-02 16:05:35 25 4
gpt4 key购买 nike

我有一个名为 Table1 的表

在 B 列中,我有票号。例如:76537434

要求:当B列任意单元格发生变化时,将该单元格(目标单元格)变为超链接,超链接地址为example.com/id=76537434

单元格值(即 76537434)必须保持不变

最佳答案

将此事件处理程序添加到工作表的代码模块中:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 2 Then Exit Sub
Target.Hyperlinks.Delete ' or Target.ClearHyperlinks to conserve the formatting
Me.Hyperlinks.Add Target, "http://example.com/id=" & Target.value
End Sub

关于vba - Excel VBA : How to autocreate hyperlink from cell value?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43092315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com