体验零代码搭建

如何双击单元格以在Excel中打开指定的工作表?

网友投稿  ·  2023-10-27 15:10  ·  在线excel  ·  阅读 633


Excel是许多职场人士常用的烦恼之源,学习相关技巧需耗费大量时间。简道云作为一款办公神器,能很好地替代Excel。它是一个在线表单和数据管理工具,支持PC端和手机微信浏览器操作。除此之外,简道云还能辅助企业进行流程审批、财务报销、人事管理等业务管理,满足不同需求。

如何双击单元格以在Excel中打开指定的工作表?

是否要快速导航到Excel工作簿中的指定工作表? 本文将提供一种VBA方法,通过双击Excel中的某个单元格来打开指定的工作表。

如何双击单元格以在Excel中打开指定的工作表?

是否要快速导航到Excel工作簿中的指定工作表? 本文将提供一种VBA方法,通过双击Excel中的某个单元格来打开指定的工作表。

如何双击单元格以在Excel中打开指定的工作表?

双击一个单元格以使用VBA代码打开指定的工作表

双击一个单元格以使用VBA代码打开指定的工作表
惊人的! 在 Excel 中使用高效的选项卡,如 Chrome、Firefox 和 Safari! 每天节省50%的时间,并减少数千次鼠标单击!

请执行以下操作以通过双击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
Copy
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? Best Office Productivity Tools Transform Hours into Minutes with Kutools for Excel! Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed! Why You Need Kutools for Excel 🛠️ Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios. 📈 Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat! ⏱️ Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease. 📊 Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story. 🗄️ Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites. 📝 Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types. 🎓 User-Friendly: A breeze for beginners and a powerful tool for experts. Download Now and Soar Through Time with Excel! Read More... Free Download... Purchase... 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! Read More... Free Download... Purchase...


Excel2010图表如何只在一个单元格里显示 << 上一篇
2023-10-27 15:10
Excel2010如何为文字添加标注拼音
2023-10-27 15:10
下一篇 >>

相关推荐