Làm cách nào để bấm đúp vào một ô để mở một trang tính được chỉ định trong Excel?
Bạn có muốn nhanh chóng điều hướng đến một trang tính được chỉ định trong sổ làm việc Excel không? Bài viết này sẽ cung cấp một phương pháp VBA để mở một trang tính được chỉ định bằng cách bấm đúp vào một ô nhất định trong Excel.
Bấm đúp vào một ô để mở một trang tính được chỉ định với mã VBA
Bấm đúp vào một ô để mở một trang tính được chỉ định với mã VBA
Vui lòng làm như sau để mở một trang tính được chỉ định bằng cách bấm đúp vào một ô trong Excel.
1. Nhấp chuột phải vào tab trang tính chứa ô bạn muốn mở trang tính bằng cách nhấp vào nó. Và sau đó nhấp vào Mã Chế độ xem từ menu ngữ cảnh. Xem ảnh chụp màn hình:
2. Trong phần mở đầu Microsoft Visual Basic cho các ứng dụng , vui lòng sao chép mã VBA sau vào cửa sổ Mã.
Mã VBA: nhấp đúp vào ô để mở một trang tính được chỉ định trong 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