如何在Excel中設置單元格或未鎖定單元格的標籤順序?
假設您需要為自己定義的單元格設置 Tab 鍵順序,例如,按 Tab 鍵將從單元格 B5 移動到 C6,從 C6 移動到 D7,從 D7 移動到 E8,然後在工作表中離開單元格 E5 時返回到 B8如下圖所示。 如何實現? 本文為您提供了一個 VBA 方法。
使用VBA代碼設置單元格或未鎖定單元格的選項卡順序
請運行下面的VBA方法來設置普通工作表中單元格的選項卡順序或受保護工作表中的未鎖定單元格。
1.在工作表中,您需要設置選項卡順序,右鍵單擊工作表選項卡,然後單擊 查看代碼 從上下文菜單。
2。 在裡面 Microsoft Visual Basic for Applications 窗口,將下面的VBA代碼複製並粘貼到 推薦碼 窗口。
VBA代碼:設置單元格或未鎖定單元格的選項卡順序
Private Sub Worksheet_Change(ByVal Target As Range)
Dim tabArray As Variant
Dim i As Long
tabArray = Array("B5", "C6", "D7", "E8")
Application.ScreenUpdating = False
For i = LBound(tabArray) To UBound(tabArray)
If tabArray(i) = Target.Address(0, 0) Then
If i = UBound(tabArray) Then
Me.Range(tabArray(LBound(tabArray))).Select
Else
Me.Range(tabArray(i + 1)).Select
End If
End If
Next i
Application.ScreenUpdating = True
End Sub
筆記:
1)在代碼中,B5,C6,D7,E8是輸入單元格的順序,您必須使用單元格地址的大寫字母。 您可以根據需要進行更改。
2)對於受保護的工作表,必須將輸入單元解鎖。
3。 按 其他 + Q 關閉鍵 Microsoft Visual Basic for Applications 窗口。
從現在開始,在B5中輸入數據後,按Tab或Enter鍵將光標移至C6,在離開C7時將光標移至D6,然後在當前工作表中移至D7,E8。
相關文章:
最佳辦公生產力工具
熱門特色: 尋找、突出顯示或識別重複項 | 刪除空白行 | 合併列或儲存格而不遺失數據 | 沒有公式的回合 ... | |
超級查詢: 多條件VLookup | 多值VLookup | 跨多個工作表的 VLookup | 模糊查詢 .... | |
高級下拉列表: 快速建立下拉列表 | 依賴下拉列表 | 多選下拉列表 .... | |
欄目經理: 新增特定數量的列 | 移動列 | 切換隱藏列的可見性狀態 | 比較範圍和列 ... | |
特色功能: 網格焦點 | 設計圖 | 大方程式酒吧 | 工作簿和工作表管理器 | 資源庫 (自動文字) | 日期選擇器 | 合併工作表 | 加密/解密單元格 | 按清單發送電子郵件 | 超級濾鏡 | 特殊過濾器 (過濾粗體/斜體/刪除線...)... | |
前 15 個工具集: 12 文本 工具 (添加文本, 刪除字符,...) | 50+ 圖表 類型 (甘特圖,...) | 40+ 實用 公式 (根據生日計算年齡,...) | 19 插入 工具 (插入二維碼, 從路徑插入圖片,...) | 12 轉化 工具 (數字到單詞, 貨幣兌換,...) | 7 合併與拆分 工具 (高級合併行, 分裂細胞,...) | ... 和更多 |
增強您的 Excel 技能 Kutools for Excel,體驗前所未有的效率。 Kutools for Excel 提供 300 多種高級功能,可提高工作效率並節省時間。 點擊此處獲取您最需要的功能...
Office Tab 為 Office 帶來選項卡式界面,讓您的工作更輕鬆
- 在Word,Excel,PowerPoint中啟用選項卡式編輯和閱讀,發布者,Access,Visio和Project。
- 在同一窗口的新選項卡中而不是在新窗口中打開並創建多個文檔。
- 將您的工作效率提高 50%,每天為您減少數百次鼠標點擊!

Sort comments by

#39671
This comment was minimized by the moderator on the site
0
0

#39729
This comment was minimized by the moderator on the site
Report
0
0

#36324
This comment was minimized by the moderator on the site
Report
0
0

#33926
This comment was minimized by the moderator on the site
0
0

#27237
This comment was minimized by the moderator on the site
0
0

#25805
This comment was minimized by the moderator on the site
Report
0
0

#25333
This comment was minimized by the moderator on the site
0
0

#25334
This comment was minimized by the moderator on the site
Report
0
0

#22274
This comment was minimized by the moderator on the site
0
0

#22275
This comment was minimized by the moderator on the site
Report
0
0

#21649
This comment was minimized by the moderator on the site
0
0

#21486
This comment was minimized by the moderator on the site
0
0

#20352
This comment was minimized by the moderator on the site
0
0
There are no comments posted here yet