Win 11, MS Office 2021
Yesterday, while working in Excel, my arrow cursor turned into a big white cross – like the Red Cross logo – it spans about 2 excel rows in my spreadsheets. I actually found a work-around but it involves running a VB Macro in a separate spreadsheet, then closing the spreadsheet while leaving Excel open, and opening one of my spreadsheets. Here are my notes if anyone is interested:
Create a spreadsheet “CursorFix.xlsm” (has to be macro-enabled – xlsm)
1. Enable the Developer tab on the Excel Ribbon and click on it.
2. Click the Visual Basic icon.
3. Under VBAProject (Workbook filename) / Microsoft Excel Objects, double click on ThisWorkbook.
4. In the window that opens in the VBA workspace, type:
Private Sub Workbook_Open()
Application.Cursor = xlNorthwestArrow
End Sub
This will set the cursor to the familiar “Select” arrow every time you open this workbook. Save the spreadsheet.
Now, to open Excel I use a shortcut to the CursorFix spreadsheet, then I immediately close it but leave Excel open. Then I open whatever spreadsheet I need to use and the arrow persists.
My question is, does anyone have a solution for the big white cross? Nothing I found on the internet worked for me. Thanks.