How to Show Splash Screen While Running Macros

madhuchelliah

Board Regular
Joined
Nov 22, 2017
Messages
226
Office Version
  1. 2019
Platform
  1. Windows
Hey Guys, I want to show splash screen while the macro starts and and close after the macros ends. I searched lot, i am getting only time based splash screens. Is there any method to execute splash screen irrespective of time?. Its should work w.r.t macro running time. Time varies based on input. Please help.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Not really an expert here, but what the hell. lol

This is for a timed Splash screen called UserForm1 showed on Sheet called "Cover", once the time finished the toolbar showed. Could you not just change the code so its reads as -

Private Sub Workbook_Open()
Sheets("Cover").Activate
Load UserForm1
Application.OnTime Now + TimeValue("00:00:12"), "HideSplash"
UserForm1.Show

Toolbar.Show

End Sub

Changed to -

Private Sub Workbook_Open()
Sheets("Cover").Activate

Load UserForm1
UserForm1.Show

**** Your Code here*****

UserForm1.Hide

End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,693
Messages
6,126,248
Members
449,305
Latest member
Dalyb2

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