gpt4 book ai didi

excel - 光标进入单元格时执行 Action

转载 作者:行者123 更新时间:2023-12-04 21:38:58 25 4
gpt4 key购买 nike

是否可以触发事件,当光标 进入 一个特定的细胞?

非常感谢

最佳答案

对的,这是可能的。请找到示例代码

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Row = 2 And Target.Column = 2 Then
MsgBox "hello"
End If

End Sub

因此,当您输入单元格 B2 时,您将获得 Hello msgbox。您可以替换您的操作而不是 MsgBox。

关于excel - 光标进入单元格时执行 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23473721/

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