How to use a macro to get the sender, subject and other fields from a message sent as an attachment.
Move Outlook Folders using VBA
Use a macro to move folders to a new parent folder instead of selecting the folder and using the Move command to open the Folder picker to select the new parent folder.
Replicate Smart Lookup using a macro
How to replicate the Smart Lookup feature in Outlook using a different search engine.
Start Outlook using a different VBA Project file
How to start Microsoft Outlook using a different VBA Project file.
Copy data from Outlook email tables to Excel
What I'm looking for is to grab the table data and dump it in the same work book and sheet as new emails come in. Using the macros on this page, when table data is received in an email, the table can be copied to an Excel worksheet. This sample email has two tables (and
Insert or change an Outlook signature using VBA
How to insert or change an Outlook signature using a VBA macro.
Remove Email Signature from Message using VBA
Remove a signature from a message using a VBA macro.
Flag for Follow up the Next Business Day
Use a macro to skip weekends on holidays when flagging messages to be due tomorrow.
Add recurring travel appointments to recurring appointments
Add travel appointments before and after recurring appointments as recurring appointments. This code sample was written by Rory. I figured out how to create recurring appointments that match the recurrence pattern of my master appointment. Sub AddTravelToMeeting() Dim olItem As AppointmentItem, olItems As Outlook.Items Dim strTravelOut As String Dim strTravelBack As String Dim iTravelMinutesOut As
Use VBA to Export Exchange GAL to Excel
A VBA code sample to export Exchange GAL entries to an Excel worksheet.