In today’s world everyone loves splash screen appearing on the screen for few seconds as they open any file. Most of the people are unaware about splash screen. The viewer will surely get impressed.
We need to follow the below steps:
Enter the following code in VBE:-
Private Sub Workbook_Open()
UserForm1.Show
End Sub
Replace the above code with the following code:-
Private Sub UserForm_Activate()
Application.OnTime Now + TimeValue("00:00:05"), "Quitform"
End Sub
By following this way we can create Splash Screen in Microsoft Excel through VBA.
The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.