Home Excel Powerpoint Word Outlook Error Codes

VBA Useful Codes

Welcome to the World of VBA
Home > VBAUsefulCodes

Show and Hide Excel Application using VBA


Similar to sheets, we can also control the visibility of the application.

' Hide Application

Sub hide()
Application.Visible = False
End Sub


' Show Application
Sub show()
Application.Visible = True
End Sub

Subscribe

Enter your e-mail below and get notified on the latest blog posts.




Tags

VBA Outlook KPI Excel Alt+F11 Dashboards Macros Recording Graphs Automation Developer WaterFall Powerpoint Charts Pivot Tables Forecast Charts


Follow Us