Copy a column or columns from each sheet into one sheet using VBA in Microsoft Excel

Sometimes, it becomes a routine work to copy data from multiple sheets for the same column. This step can be avoided using automation. If you want to ...

Mail the Activeworkbook using VBA in Microsoft Excel

Sub Mail_workbook() ActiveWorkbook.SendMail "ron@debruin.nl", _ "This is the Subject line" End Sub If you want to ...

Mail sheet(s) to one or more people using VBA in Microsoft Excel

Add new sheet, change the sheet name to mail. Every mail you want to send will use 3 columns. in column A - enter sheet or sheets name you want t...

Mail every Worksheet with address in cell A1 using VBA in Microsoft Excel

This macro will send each sheet to one person. Create a new workbook with the Sheet. Save the workbook before mailing it Delete the file from ...

Mail the selection using VBA in Microsoft Excel

 Create a new workbook with the Selection. Save the workbook before mailing it. Delete the file from your hard disk after it is sent. It wi...

Mail Sheet using Array VBA in Microsoft Excel

 Create a new workbook with the SheetsArray. Save the workbook before mailing it. Delete the file from your hard disk after it is sent. Sub...

Mail a Sheet using VBA in Microsoft Excel

In this article, we will create a macro to send a sheet as attachment in an email. Before running the macro, we need to specify an email id and s...

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.