You can use the Mid() function in VBA to split a given string into an Array of characters in Excel. ...
There are various ways to remove or delete blank rows in Excel. Either you can do this using an Excel built-in feature called Go-To Special or you can automate the process using VBA. Here in this post ...
The email body usually contains plain text data, in paragraphs, and you can attach files. You can also send emails from Excel in other formats, like in the form of an HTML Table. I’ll show how ...
Well, its holiday season again and Christmas is approaching, followed by the New Year. Many of us would be preparing to send emails to our colleagues, clients, friends and family. I’ll show you how to ...
You can create charts easily in Excel using data in your worksheet by selecting a range of data and then insert a chart. Or, you can automate the process of creating beautiful interactive charts with ...
Let us assume I have a word file with few paragraphs in it. I want to copy content as it is from the doc file and write it in my Excel worksheet, each word in a cell, go to the next line or row and ...
Let us assume I have a UserForm in my Excel worksheet, which has few controls (or elements like textbox, label, checkbox etc.). How do I check if the control is a checkbox using a VBA macro? ...
There are many ways you can run or execute a macro like, pressing the F5 key in VBA or simply clicking the run button. Or, you can insert a button (an ActiveX Control) on your Excel worksheet, click ...
In Excel, there is an in-built feature called the Subtotal (under the “Data” tab) which when used can automatically insert subtotals and grand total for a selected range of data. However, if you are ...
In my previous article on Excel automation using VBA, I have explained how to fill a web form and save the data, from Excel using VBA. The data that I have used in that example were hardcoded ...