gpt4 book ai didi

excel - 如果在列中按下 Enter 键如何触发代码

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

每当在“H”列中按下回车键时,我都试图移动到 excel 中“A”列下一行的第一个单元格。到目前为止,我的代码如下;

Private Sub move_to_next_row(KeyCode As Integer, Shift As Integer)  
If KeyCode = 13 Then
ActiveCell.Offset(1, -7).Activate
End If
End Sub

最佳答案

工作表没有 KeyDown 事件或类似事件。您只能检查 H 列中的单元格是否已更改,然后移动到下一行的第一列。

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Me.Columns("H")) Is Nothing Then
Me.Cells(Target.Row + 1, "A").Select
End If
End Sub

关于excel - 如果在列中按下 Enter 键如何触发代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57325314/

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