Hide saving bar during VBA

ianto2842

New Member
Joined
Apr 7, 2021
Messages
19
Office Version
  1. 2013
Platform
  1. Windows
Hi, I have a script that I've built that creates copies of itself and saves them in various areas. During the script I have used Application.ScreenUpdating to hide all the flickering but because it saves about 5 times, the save bar pops up and disappears several times. I wondered if there was a way to stop that so it just runs without anything appearing? Just wanted it to look more professional haha. I want to stress that it's not a save option where the user needs to click anything, its just the saving progress bar.

Thanks!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hi

If you are asking a question about your code it would be useful to post it so that others can see what method you are using, even if (in this instance) it's just the lines where you save!!

I find that this method doesn't usually create a save popup:

VBA Code:
ThisWorkbook.SaveCopyAs "full_save_path_location"

Switch out full_save_path_location for your full save location and include the file extension, e.g. C:\Users\ianto2842\Documents\MyDoc.xlsm
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,852
Members
449,096
Latest member
Erald

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