Tip Printed from ExcelTip.com
Change the cursor appearance to hourglass using VBA in Microsoft Excel


Post this cofe line at the begining of the code to change the cursor appearance to hourglass:
Application.Cursor = xlWait
Post this code line before the end of the code to set the cursor back:
Application.Cursor = xlDefault