Forum Discussion
aussievic0
Mar 23, 2020Copper Contributor
Lenovo Mouse & Excel
My cat walked over my keyboard whilst I was in an Excel spreadsheet. Now my mouse pointer is stuck showing a plus sign (+) instead of the normal arrow cursor. This now occurs in all spreadsheets incl...
JKPieterse
Mar 23, 2020Silver Contributor
The default cursor when your mouse moves over the Excel grid *is* a thick plus sign, your cat did nothing to affect that 🙂
aussievic0
Mar 23, 2020Copper Contributor
JKPieterseDid not realize that as I have only had an Arrow Head which provides better operation for my use. So how do I get back to it?
- aussievic0Mar 24, 2020Copper Contributor
Repeat - So how do I get back to it? How do I get my arrow back? Jan Karel Pieterse
- JKPieterseMar 24, 2020Silver Contributor
aussievic0 You could run this little VBA routine, but I would not enjoy my Excel being in that state:
Sub ChangePointer() Application.Cursor=xlNorthwestArrow End SubIf you place that code in a normal module, you can call it from the Workbook_Open event in Thisworkbook in your personal macro workbook.