如何单击或双击单元格以在Excel中打开指定的用户表单?
只需单击或双击Excel中的单元格,即可打开指定的用户窗体。 但是如何实现呢? 本文中的一种方法可以为您提供帮助。
单击或双击一个单元格以使用VBA代码打开指定的用户表单
单击或双击一个单元格以使用VBA代码打开指定的用户表单
惊人的! 在 Excel 中使用高效的选项卡,如 Chrome、Firefox 和 Safari!
每天节省50%的时间,并减少数千次鼠标单击!
请执行以下操作以单击或双击单元格以在Excel中打开指定的用户表单。
1.使用您要单击的单元格打开工作表,或双击以打开用户表单。
2.右键单击工作表选项卡,然后单击 查看代码 从上下文菜单中。 看截图:
3.在开幕 Microsoft Visual Basic应用程序 窗口,请将以下VBA代码复制并粘贴到代码窗口中。
VBA代码:单击一个单元格以在Excel中打开指定的用户表单:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Updateby20171226
If Not Application.Intersect(Target, Range("A1:B9")) Is Nothing Then
UserForm1.Show
End If
End Sub
VBA code: Double click a cell to open a specified user form in Excel:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Updateby20171226
If Not Application.Intersect(Target, Range("A1:B9")) Is Nothing Then
Cancel = True
UserForm1.Show
End If
End Sub
Note: In the code, A1:B9 is the cell range you will open user form based on. And UserForm1 is the name of the user form you will open by clicking or double-clicking cells. Please change it based on your need.
4. Press the Alt + Q keys to close the Microsoft Visual Basic for Applications window.
From now on, when click or double click any cell in a certain range, the specified user form will be opened immediately as below screenshot shown.
Related Articles:
How to double click a cell to open a specified worksheet 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...
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。