How to Unzip file using VBA – Excel Macro?

Extract Zip – Unzip files with VBA To extract Zip file content, You can use windows default “Compressed (Zipped) Folder” application. There is no inbuilt object within VBA to do this. You have to invoke the Windows Compressor using Shell object. Here is how it is done. 1. VBA Macro […]

Clear Excel VBA Immediate Window – Macro Code

Clear Excel VBA Immediate Window Manually There is no explicit option to clear immediate window. Just select all content in Immediate window using control + A, then press delete button. This is the only option to clear the data in this window. Excel VBA Code to Clear Immediate Window As […]