如何雙擊單元格以在Excel中打開指定的工作表?
是否要快速導航到Excel工作簿中的指定工作表? 本文將提供一種VBA方法,通過雙擊Excel中的某個單元格來打開指定的工作表。
雙擊一個單元格以使用VBA代碼打開指定的工作表
請執行以下操作以通過雙擊Excel中的單元格來打開指定的工作表。
1.右鍵單擊包含要打開工作表的單元格的工作表選項卡,方法是單擊它。 然後點擊 查看代碼 從上下文菜單中。 看截圖:
2.在開幕 Microsoft Visual Basic for Applications 窗口,請將以下VBA代碼複製到“代碼”窗口中。
VBA代碼:雙擊單元格以在Excel中打開指定的工作表
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
'Updated by Extendoffice 20180822
Dim xArray, xAValue As Variant
Dim xFNum As Long
Dim xStr, xStrRg, xStrSheetName As String
xRgArray = Array("A1;Sheet2", "A12;Sheet3", "A4;Sheet4", "A100;Sheet5")
On Error Resume Next
For xFNum = LBound(xRgArray) To UBound(xRgArray)
xStr = ""
xStr = xRgArray(xFNum)
xAValue = ""
xAValue = Split(xStr, ";")
xStrRg = ""
xStrRg = xAValue(0)
xStrSheetName = ""
xStrSheetName = xAValue(1)
If Not Intersect(Target, Range(xStrRg)) Is Nothing Then
Sheets(xStrSheetName).Activate
End If
Next
End Sub
Note: In the VBA code, "A1;Sheet2", "A12;Sheet3", "A4;Sheet4", "A100;Sheet5" mean that doube click cell A1 will open Sheet2, double click A2 will open Sheet3..., please change them based on your needs.
3. Press the Alt + Q keys together to close the Microsoft Visual Basic for Applications window.
From now on, when double clicking cell A1 in current worksheet, the specified worksheet will be activated immediately.
Related Articles:
- How to click or double click cell to open a specified user form in Excel?
- How to add check mark in a cell with double clicking in Excel?
- How to auto add/enter current date/time in a cell with double clicking in Excel?
- How to double click a cell and add 1 to that cell value in Excel?
- How to pop up a calendar when clicking a specific cell in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Sort comments by
#24540
This comment was minimized by the moderator on the site
0
0
#24541
This comment was minimized by the moderator on the site
Report
0
0
#24542
This comment was minimized by the moderator on the site
0
0
#24543
This comment was minimized by the moderator on the site
Report
0
0
#26432
This comment was minimized by the moderator on the site
0
0
#26433
This comment was minimized by the moderator on the site
Report
0
0
#28621
This comment was minimized by the moderator on the site
Report
0
0
#28622
This comment was minimized by the moderator on the site
Report
0
0
#29977
This comment was minimized by the moderator on the site
0
0
#29978
This comment was minimized by the moderator on the site
Report
0
0
#31578
This comment was minimized by the moderator on the site
0
0
#34165
This comment was minimized by the moderator on the site
0
0
#34166
This comment was minimized by the moderator on the site
0
0
#34167
This comment was minimized by the moderator on the site
Report
0
0
There are no comments posted here yet