Excel Macro code to Active Workbook in an Email

How to Active Workbook in an Email in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Active Workbook in an Email
Sub Send_Mail()
Dim OutApp As Object
Dim OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With OutMail
.to = "Sales@FrontLinePaper.com"
.Subject = "Growth Report"
.Body = "Hello Team, Please find attached Growth Report."
.Attachments.Add ActiveWorkbook.FullName
.display
End With
Set OutMail = Nothing
Set OutApp = Nothing
End Sub

Use this macro code to quickly send your active workbook in an e-mail. You can change the subject, email, and body text in code and if you want to send this mail directly, use “.Send” instead of “.Display”.

RECENTLY UPLOADED EXCEL TEMPLATES

rental-cash-flow

Rental Cash flow

This Rental cash flow spreadsheet is for those who are thinking about purchasing rental property for the purpose of cash …

Download Now
paycheck-calculator

Paycheck Calculator

Use our Free Paycheck Calculator spreadsheet to estimate the effects of deductions, holdings, federal tax, and allowances on net take-home pay. …

Download Now
line-of-credit-tracker

Line of Credit Tracker

Are a small business owner or small-time lender wanting to track a line of credit? If you have tried our …

Download Now
compound-interest-calculator

Compound Interest Calculator

Compound Interest refers to earning or paying multiple interest on interest. Although it can apply to both savings and loans, …

Download Now
investment-tracker

Investment Tracker

This spreadsheet is design for someone who want a simple way to track the value of their investment accounts over …

Download Now
retirement-savings-calculator

Retirement Savings Calculator

Retirement savings calculator planning is the preparation of finances for the period after retirement or when you stop working. Planning …

Download Now