G Guest Nov 25, 2004 #1 Is there a way to change Excel's pointer from a + to an arrow (like in Lotus)?
C Chip Pearson Nov 25, 2004 #2 Only with VBA code. Sub ChangeCursor() Application.Cursor = xlNorthwestArrow End Sub Sub ChangeCursorBack() Application.Cursor =xlDefault End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com
Only with VBA code. Sub ChangeCursor() Application.Cursor = xlNorthwestArrow End Sub Sub ChangeCursorBack() Application.Cursor =xlDefault End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com