A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Yes, you are almost there. Kindly use the updated code below: Sub UpdateStatus() ' Disable screen updating Application.ScreenUpdating = False DoEvents
' Display "Started" status Range("A1"). Value = "Started"
' Your VBA code here
' Display "Completed" status Range("A1"). Value = "Completed"
' Enable screen updating Application.ScreenUpdating = True End Sub