In this tutorial I will show you how to import or extract Outlook emails into a Word document using VBA. Importing emails from Outlook into Word (or Excel) can help you analyze the data ...
In this tutorial, I’ll show you how to create and add ActiveX Controls dynamically in a UserForm and save all the data (extracted from the controls) in an SQL Server table. ...
Here in this post, I will show you how to create a simple progress bar in Excel using UserForm and VBA ...
Well, you can send emails from Excel using Outlook and a simple Macro. No worries if you dont have access to Outlook or for some reason dont want to use Outlook from Excel. You can still send ...
Let us assume, I have multiple tables in my Excel worksheet. I want to email the tables as it is (with color, fonts etc.) as HTML table in the email body. I’ll show you how easily you can do this ...
Let us assume I have an Excel file in a folder and I want to copy data as it is to another file (a master file) using VBA. When I am saying as it is I mean the macro should copy data from sheet to ...
In this post I’ll show you how split text string from one cell to multiple cells. I’ve shared 2 different methods: using a new function called TEXTSPLIT and another using a macro in VBA. In-addition ...
Here in this post I’ll show you “two” different methods to show (or display) a progress bar in your Excel worksheet using VBA. ...
The isNumeric() function in VBA is often used to check if a cell has numbers in an Excel worksheet. However, there is a super simple method to do this. You can use RegEx or Regular Expressions ...
Here in this post I’ll show how to use RegEx (or regular expressions) in VBA Excel to extract a given pattern from string. ...