有键盘快捷方式可以在Excel中循环切换工作表吗?


3

在这个问题中,他询问的是用于切换选项卡的键盘快捷键。但是此快捷方式将工作表向后或向前移动,这意味着在最后一张工作表上按Ctrl+ PageUp不会移动第一张工作表。

是否有任何允许循环切换的快捷方式(例如Ctrl- Tab在Windows中)?

Answers:


5

这是我在评论中描述的简单版本。

Sub SwitchSheets()
    Dim NextSheet As Worksheet
    Set NextSheet = ActiveSheet.Next
    If NextSheet Is Nothing Then
        ThisWorkbook.Sheets(1).Activate
    Else
        NextSheet.Select
    End If
End Sub

View选项卡上单击Macros,选择SwitchSheets,转到Options并为其设置快捷键(Shift根据需要按住,将其添加到和弦中)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.