xenou
MrExcel MVP
- Joined
- Mar 2, 2007
- Messages
- 16,836
- Office Version
- 2019
- Platform
- Windows
F2 is a useful key (puts a cell in edit mode). But I sometimes hit F1 by mistake and Excel help pops up.
So a little fix I find helpful is this one:
Just put this in the open event of a workbook that will start up each session (like Personal.xls in your xlStart folder, or an addin that you always use).
Keep Excelling,
ξ
So a little fix I find helpful is this one:
Code:
[COLOR="Navy"]Private[/COLOR] [COLOR="Navy"]Sub[/COLOR] Workbook_Open()
[COLOR="SeaGreen"]'//I'm always hitting F1 when I want F2[/COLOR]
Application.OnKey "{F1}", ""
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Just put this in the open event of a workbook that will start up each session (like Personal.xls in your xlStart folder, or an addin that you always use).
Keep Excelling,
ξ