Saving Progress not always visible

Deladier

Board Regular
Joined
May 4, 2005
Messages
127
Hello everybody,

I did a Macro that saves my current Workbook by clicking a Button and shows 'symbolic' saving progress in Cell J18.
Problem is, that not always shows the saving progress since the first click, and I can't find the error.
Here's the Code:

Private Sub Saving_Click()
'Save Workbook
Application.ScreenUpdating = True
SaveChanges
End Sub

Sub SaveChanges()
Dim x As Integer, y As Integer
Application.ScreenUpdating = False
ActiveWorkbook.Save
Application.ScreenUpdating = True
'Delay in order to make visible for user the "saving progress" in Cell J18
For x = 0 To 100 Step 10
Sheet11.Range("J18").Value = x / 100
For y = 1 To 10000: Next y
Next x
For y = 1 To 10000: Next y
Sheet11.Range("J18").Value = 0
Sheet11.Range("A2").Select
Application.ScreenUpdating = True
Application.Speech.Speak "Changes Saved", True
End Sub

Thanks in advance.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,214,848
Messages
6,121,917
Members
449,055
Latest member
KB13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top