How to Hide "Opening" Excel file progress bar

aymanm

Board Regular
Joined
Sep 10, 2007
Messages
56
Hello,
The following code does NOT hide the "Opening" Excel file progress bar. It occurs when opening a 2MB Excel file in VBA code on a network server when I remotely access via VPN.

Application.ScreenUpdating = False
Application.DisplayAlerts = False

Thanks!
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Do you mean the Excel file progress bar that appears in the StatusBar at the bottom of the screen?

What version of Excel are you using?
 
Upvote 0
Try:
Rich (BB code):
With Application
    .ScreenUpdating = False
    .DisplayAlerts = False
    .StatusBar = False
End With
 
Upvote 0
I'm using Excel 2007 in Windows XP. The progress bar, not a Status Bar, is probably from Windows, not Excel. Can I include an attacment to show a snaphsot?
 
Upvote 0
If you are opening from a shared folder on the network you may want to ensure that caching options are set to No Files are available offline.
  1. Right-Click on the shared folder and select Properties
  2. Select the Sharing tab
  3. Select Advanced Sharing
  4. Select Caching
  5. Select the No files or programs from the shared folders are available offline option
 
Upvote 0

Forum statistics

Threads
1,224,590
Messages
6,179,763
Members
452,940
Latest member
rootytrip

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