Як двічі клацнути клітинку, щоб відкрити вказаний аркуш у Excel?
Ви хочете швидко перейти до вказаного аркуша в книзі Excel? У цій статті буде запропоновано метод VBA для відкриття вказаного робочого аркуша подвійним клацанням певної комірки в Excel.
Двічі клацніть клітинку, щоб відкрити вказаний аркуш із кодом VBA
Двічі клацніть клітинку, щоб відкрити вказаний аркуш із кодом VBA

Будь ласка, виконайте наступні дії, щоб відкрити вказаний аркуш, двічі клацнувши клітинку в Excel.
1. Клацніть правою кнопкою миші вкладку аркуша, яка містить клітинку, яку потрібно відкрити, натиснувши на неї. А потім клацніть Переглянути код з контекстного меню. Дивіться знімок екрана:
2. На відкритті Microsoft Visual Basic для додатків вікно, скопіюйте наступний код 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-2019 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
#24541
This comment was minimized by the moderator on the site
Report
#24542
This comment was minimized by the moderator on the site
#24543
This comment was minimized by the moderator on the site
Report
#26432
This comment was minimized by the moderator on the site
#26433
This comment was minimized by the moderator on the site
Report
#28621
This comment was minimized by the moderator on the site
Report
#28622
This comment was minimized by the moderator on the site
Report
#29977
This comment was minimized by the moderator on the site
#29978
This comment was minimized by the moderator on the site
Report
#31578
This comment was minimized by the moderator on the site
#34165
This comment was minimized by the moderator on the site
#34166
This comment was minimized by the moderator on the site
#34167
This comment was minimized by the moderator on the site
Report
There are no comments posted here yet