List, change or delete external formula references (links) using VBA in Microsoft Excel

With the macros below you can find and delete formulas in cells that refers to other workbooks. The macros doesn't find all external references since...

List all the workbook links in a workbook using VBA in Microsoft Excel

Place the code below into the standard module Sub ListLinks() Dim aLinks As Variant aLinks = ActiveWorkbook.LinkSources(xlExcelLinks) ...

Delete all cells with data from previous dates using VBA

In this article, we will create a macro to delete data of previous dates. This macro checks the data, keeps today’s data and deletes all the data fr...

Execute Command/Sub-Procedure Using VBA Timer

In this article, we will create a macro to call another macro or execute a command after defined intervals of time. To execute the macro, cli...

Launch Word file from Excel VBA

In this article, we will create a macro to open word document. To open a word document, we will specify full path of the document in the text box on ...

Copy worksheet information to Word using VBA in Microsoft Excel

If you are required to copy & paste data from multiple excel worksheets into MS Word then you should read this article. In excel, there is no such...

Determine if an application is available using VBA in Microsoft Excel

To find out the status of any particular application available or running in Microsoft Excel, take a look at this article. We will use VBA code to che...

Terms and Conditions of use

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.