将 VBA 代码应用于更多行或行范围
我只是想应用仅在行中工作的方法。
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("P6:R6")) Is Nothing Then Exit Sub
Cells(O6, O15).Select
End Sub
目标:单击要重定向到某个单元格的特定单元格(我将保护除目标单元格之外的这些单元格。)我希望它仅适用于特定范围的行,但不连续。我希望应用此代码的行之间会有间隙。
到目前为止我找到的步骤:上面的公式是我在网上找到的,仅适用于 1 行。
I am just trying to apply that is working in row only.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("P6:R6")) Is Nothing Then Exit Sub
Cells(O6, O15).Select
End Sub
Goal: Click specific cells to be redirected to a cell( I will protect those cells except for the target cell.) I want it to work to specific range of rows only but not continuous. There will be gaps between rows I want this code to apply.
Steps I Found So Far: The formula above I found online and that only works in 1 row.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: