• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Create Tasks from Email and move to different Task folders

Slipstick Systems

› Developer › Code Samples › Create Tasks from Email and move to different Task folders

Last reviewed on August 29, 2018     45 Comments

This macro is the result of a question from a "Getting Things Done" user who wanted a better way to manage tasks on his smartphone.

I use the GTD method and I’ve found that assigning categories doesn’t work for me, one reason is I like to sync the tasks to my iPhone. When you just assign categories and dump everything in one big bucket you have to constantly expand and collapse your views to isolate the right group – lots of clicking and mouse moving. I want to select a message from my inbox – then click on a macro button and have it copied to the appropriate task folder – Do It Today, Deferred, etc. It would look like just like the buttons in the Quick Steps, but unfortunately they just assign the category. I found Create a Task from an Email using a Rule but need help making it work.

Copy the following code block, one copy for each Task folder, and replace the Sub name and folder name (in tFolder) with the name of the folder it will apply to.

Sub TasksFoldername()
tFolder = "Old Tasks"
CreateTasks
End Sub

Create QAT or ribbon buttons for the folder macros. To do this, go to File, Options, Customize Ribbon (or Quick Access Toolbar). In Choose commands from, select Macros. Select the folder macros and click the Add button to add them to the QAT or a ribbon. (If using the ribbon, you need to add a New Group first.)

Tip: if you use the QAT, you can assign keyboard shortcuts to the macros.

Create tasks from email

To use, you need the GetCurrentItem function from Outlook VBA: work with open item or selected item. This will allow the code to work with open or selected messages.

Public tFolder As String

Private Sub CreateTasks()
      
Dim Ns As Outlook.NameSpace
Dim olTask As Outlook.TaskItem
Dim Item As Outlook.mailItem

Set Ns = Application.GetNamespace("MAPI")

' Get Function athttp://slipstick.me/e8mio
Set Item = GetCurrentItem()

Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)
Set olTask = taskFolder.Items.Add(olTaskItem)
With olTask
        .Subject = Item.Subject
        .Attachments.Add Item
        .Body = Item.Body
        .DueDate = Now + 1
        .Save
        .Display 'show the task to add notes
End With
Set Ns = Nothing
End Sub

' create one macro for Tasks each folder
' add to ribbon or QAT button
Sub TasksFoldername1()
tFolder = "My Tasks"
CreateTasks
End Sub

Sub TasksFoldername2()
tFolder = "Old Tasks"
CreateTasks
End Sub

How to use the macros on this page

First: You need to have macro security set to the lowest setting, Enable all macros during testing. The macros will not work with the top two options that disable all macros or unsigned macros. You could choose the option Notification for all macros, then accept it each time you restart Outlook, however, because it's somewhat hard to sneak macros into Outlook (unlike in Word and Excel), allowing all macros is safe, especially during the testing phase. You can sign the macro when it is finished and change the macro security to notify.

To check your macro security in Outlook 2010 and newer, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, look at Tools, Macro Security.

After you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Macros that run when Outlook starts or automatically need to be in ThisOutlookSession, all other macros should be put in a module, but most will also work if placed in ThisOutlookSession. (It's generally recommended to keep only the automatic macros in ThisOutlookSession and use modules for all other macros.) The instructions are below.

The macros on this page should be placed in a module.

Open the VBA Editor by pressing Alt+F11 on your keyboard.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.

More information as well as screenshots are at How to use the VBA Editor

More Information

  • Automatically create a task when sending a message
  • Create a Task from an Email using a Rule
  • Create an Outlook Appointment from a Message
  • Create Task or Appointment and Insert Selected Text
  • Create Tasks from Email and move to different Task folders
  • Replicate GTD: Create a task after sending a message
Create Tasks from Email and move to different Task folders was last modified: August 29th, 2018 by Diane Poremsky
Post Views: 32

Related Posts:

  • Create a Task and copy to another Tasks folder
  • Create a Series of Tasks using VBA
  • Create a Task from an Email using a Rule
  • Create a Series of Tasks Leading up to an Appointment

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Michael says

    June 28, 2016 at 6:59 am

    Hi Diane

    I have the following which is working fine:
    Sub ConvertMailtoTask(Item As Outlook.MailItem)
    Dim objTask As Outlook.TaskItem
    Set objTask = Application.CreateItem(olTaskItem)
    With objTask
    .Subject = Item.Subject
    .StartDate = Item.ReceivedTime
    .Body = Item.Body
    .Save
    End With
    Set objTask = Nothing
    End Sub

    However I would like it to save the tasks to the task folder of another exachange account that is shared. the other folder is also named "Tasks" (Being the default Task folder for that account.

    How do I tell it to save the tasks to the other default task folder?

    Thanks in advance
    Michael

    Reply
    • Diane Poremsky says

      June 28, 2016 at 11:40 pm

      Use this to add to other folders -
      Set objTask = olTaskFolder.Items.Add(olTaskItem)

      to identify the folder olTaskFolder represents, see https://www.slipstick.com/developer/working-vba-nondefault-outlook-folders/#shared for the code to identify a shared exchange folder. If the account is open in the profile (as an account), you can use the GetFolderPath function on that page.

      Reply
  2. Dan P says

    March 4, 2016 at 12:02 am

    Hello Diane,

    I am using Outlook 2013. I have attempted to implement the above code but for some reason every time I run it I get the comment "The attempted operation failed. An object could not be found."

    Running the debugger shows the following code line highlighted:
    Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)

    Could you please help me understand how to fix this? I cannot figure it out. I have ensured all my macro settings are appropriate for testing.

    Cheers

    Reply
    • Diane Poremsky says

      March 6, 2016 at 11:43 pm

      This line: Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder) at a subfolder under your default tasks folder. The actual folder name is set in the variable tFolder, using one of these macros. If you don't have folders under the task folder with those names and want to use the default task folder, use Set taskFolder = Ns.GetDefaultFolder(olFolderTasks)

      ' create one macro for Tasks each folder
      ' add to ribbon or QAT button
      Sub TasksFoldername1()
      tFolder = "My Tasks"
      CreateTasks
      End Sub

      Sub TasksFoldername2()
      tFolder = "Old Tasks"
      CreateTasks
      End Sub

      Reply
  3. John Z says

    September 11, 2015 at 12:13 pm

    Hello Diane,
    Thank you for the truly excellent post.

    I would like to modify the approach you have on saving the item as an attachment and do the following.

    Copy the item body into the task body ( you already do this)
    Copy the item attachments to the task as task attachments. ( you attach the original email as an attachment.

    My goal is to make the task a mirror copy of the original email (including attachment) without having to open the Item to find the original attachments. Can it be done?

    Reply
    • David Bell says

      December 11, 2015 at 10:47 am

      Is there someone I can pay to help me with this? I enjoy the topic but don't have time to learn it.

      Reply
      • Diane Poremsky says

        December 11, 2015 at 11:07 am

        I offer training and assistance for $100/hour. You just wanted the attachments added to the task or did you need other things too?

  4. Nikhil says

    September 6, 2015 at 1:49 pm

    Dear Diane,

    Thanks once again for all the help. May be I am getting too creative, but is it possible that I can create two simulatenous tasks at the same time from the same email? I would like one task to be created in the 'Projects' task folder and another in the 'Next Action' folder - both originating from the same email.

    Thanks in advance.
    Nikhil

    Reply
    • Diane Poremsky says

      September 6, 2015 at 5:21 pm

      Sure, just repeat these lines, replacing tfolder with the actual folder name
      Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)
      Set olTask = taskFolder.Items.Add(olTaskItem)
      With olTask
      .Subject = Item.Subject
      .Attachments.Add Item
      .Body = Item.Body
      .DueDate = Now + 1
      .Save
      .Display 'show the task to add notes
      End With

      Reply
      • Nikhil says

        December 25, 2015 at 1:20 am

        Diane,

        Hope you are doing great. I wanted a few minor tweaks to the code. Please let me know if it is possible.
        1.) Can I choose Due Date to be a specific day for e.g. this week Friday or next week Monday?
        2.) I am struggling to add the option where the task once created, gets auto-emailed to my Evernote account. You had shared the below link, but it seems to be for a new email. I am looking to forward the task i am creating.
        https://www.slipstick.com/developer/create-a-new-message-using-vba/

      • Diane Poremsky says

        December 28, 2015 at 1:30 am

        1. Yes, you just need to calculate the date.
        use this as the date -
        .DueDate = Format(dteFriday(Now()), "mm/dd/yy")
        and this function - change the formulas for Monday.

        Public Function dteFriday(dte As Date) As Date
        Dim x As Integer
        x = Weekday(dte)
        Debug.Print x
        If x = 7 Then
        dteFriday = dte - 1 + x
        Else
        dteFriday = dte + 6 - x
        End If
        End Function

        2. do you want to send it as an attachment or as text in the body? this will send it as an attachment and with notes in the body. Add it after the End with that creates the task.
        Dim objMsg As MailItem
        Set objMsg = Application.CreateItem(olMailItem)

        With objMsg
        .To = "Alias@domain.com"
        .Subject = olTask.Subject
        .Body = olTask.Subject & vbCrLf & olTask.DueDate
        .Attachments.Add olTask
        .Display
        End With

      • Nikhil says

        July 24, 2016 at 2:09 pm

        Dear Diane,

        I tried using the code to choose Friday as the default date. I copied the public function too. I am getting a syntax error. Could you please see if I am missing something?

  5. Nikhil says

    August 19, 2015 at 8:55 am

    Dear Diane,

    Thanks a lot for the help and special thanks for bearing with my really basic knowledge. The workflow is working exactly as I wanted. Is there a way I can:

    1.) Add a step where the task also gets emailed (to my Evernote or ToodleDo account) while it is being created in one of the customized folders?

    2.) I can hide the default 'Task' and 'To-Do' folders, so that only my customized folders remain visible.

    Thanks once again. You are amazing.

    Nikhil

    Reply
    • Nikhil says

      August 23, 2015 at 2:23 pm

      Thanks Diane in advance for considering my above query.

      Reply
    • Diane Poremsky says

      August 23, 2015 at 11:47 pm

      1. Sure. Do you want to send it as a task request or as an email containing task information? See https://www.slipstick.com/developer/create-a-new-message-using-vba/ for sample code that creates a message.

      2. You can start in Tasks or only show tasks in the To-Do list but you can't hide them - outlook will unhide them.
      See https://www.slipstick.com/outlook/tasks/remove-todo-list-tasks-list-outlook/ to start in tasks

      Reply
  6. Nikhil says

    August 14, 2015 at 4:33 am

    Thanks Diane.

    Truly appreciate your help. The code is working perfectly!
    Is there a modification possible where the task saves the email as an attachment and doesn't copy the email text? I am seeing it is doing both. I can see the email text and email as an attachment.

    Also, if the customized folder isn't a sub-folder within the default Tasks folder, what would be the modification?

    Thanks in advance. You are amazing.

    Nikhil

    Reply
    • Diane Poremsky says

      August 14, 2015 at 7:05 pm

      these lines do the body and attachment - delete one or both
      .Attachments.Add Item
      .Body = Item.Body

      this handles the folder -
      Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)
      if ts at the same level as tasks, you'd use
      Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).parent.Folders(tFolder)

      Reply
  7. Nikhil says

    August 13, 2015 at 10:15 am

    Diane - I will appreciate your help on the above. I know I am asking a lot of basic questions and am truly grateful for your patience.

    Reply
  8. Nikhil says

    August 9, 2015 at 8:41 am

    Thanks Diane. I am copying the code below I am trying. I have created a sub-folder within Tasks called 'Test1'. I am getting a compile error 'Expected End Sub'. 'Private Sub CreateTasks () is getting yellow highlighted.

    Thanks a lot in advance. You are super helpful.

    Private Sub CreateTasks()

    Dim Ns As Outlook.NameSpace
    Dim olTask As Outlook.TaskItem
    Dim Item As Outlook.MailItem

    Set Ns = Application.GetNamespace("MAPI")

    Function GetCurrentItem() As Object
    Dim objApp As Outlook.Application

    Set objApp = Application
    On Error Resume Next
    Select Case TypeName(objApp.ActiveWindow)
    Case "Explorer"
    Set GetCurrentItem = objApp.ActiveExplorer.Selection.Item(1)
    Case "Inspector"
    Set GetCurrentItem = objApp.ActiveInspector.CurrentItem
    End Select

    Set objApp = Nothing
    End Function
    Set Item = GetCurrentItem()

    Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)
    Set olTask = taskFolder.Items.Add(olTaskItem)
    With olTask
    .Subject = Item.Subject
    .Attachments.Add Item
    .Body = Item.Body
    .DueDate = Now + 1
    .Save
    .Display 'show the task to add notes
    End With
    Set Ns = Nothing
    End Sub

    ' create one macro for Tasks each folder
    ' add to ribbon or QAT button
    Sub TasksFoldername1()
    tFolder = "Test1"
    CreateTasks
    End Sub

    Reply
    • Diane Poremsky says

      August 13, 2015 at 3:30 pm

      This part goes at the end of the macros or in a different module (other macros can use it too).
      Function GetCurrentItem() As Object
      Dim objApp As Outlook.Application

      Set objApp = Application
      On Error Resume Next
      Select Case TypeName(objApp.ActiveWindow)
      Case "Explorer"
      Set GetCurrentItem = objApp.ActiveExplorer.Selection.Item(1)
      Case "Inspector"
      Set GetCurrentItem = objApp.ActiveInspector.CurrentItem
      End Select

      Set objApp = Nothing
      End Function

      Reply
  9. Nikhil says

    August 8, 2015 at 2:11 pm

    Thanks Diane,

    You are super helpful. I had a few queries. I know I am asking really basic ones, so please bear with me.

    1.) I am pasting the code found on this page, as below. There is a text referring to "http://slipstick.me/e8mio". Should I copy and paste the code from that page?

    2.) My non-default task folders are "Compass" and "Projects". Should I enter it as per below?

    Sub TasksFoldername1()
    tFolder = "Compass"
    CreateTasks
    End Sub

    The code which i am using follows...
    ----------------------------------------------------------------------------------------------------------------

    Public tFolder As String

    Private Sub CreateTasks()

    Dim Ns As Outlook.NameSpace
    Dim olTask As Outlook.TaskItem
    Dim Item As Outlook.mailItem

    Set Ns = Application.GetNamespace("MAPI")

    ' Get Function at http://slipstick.me/e8mio
    Set Item = GetCurrentItem()

    Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)
    Set olTask = taskFolder.Items.Add(olTaskItem)
    With olTask
    .Subject = Item.Subject
    .Attachments.Add Item
    .Body = Item.Body
    .DueDate = Now + 1
    .Save
    .Display 'show the task to add notes
    End With
    Set Ns = Nothing
    End Sub

    ' create one macro for Tasks each folder
    ' add to ribbon or QAT button
    Sub TasksFoldername1()
    tFolder = "My Tasks"
    CreateTasks
    End Sub

    Sub TasksFoldername2()
    tFolder = "Old Tasks"
    CreateTasks
    End Sub

    Reply
    • Diane Poremsky says

      August 8, 2015 at 11:03 pm

      1. Yes, you need the getcurrentitem function so the macro works with open or selected items.
      2. Yes. Do it like that. You'll have one for Compass and one for Projects. The code assumed they are subfolders of tasks - if not, you'll need to make a minor edit to the code.

      Reply
  10. Nikhil says

    August 8, 2015 at 11:36 am

    Dear Diane,

    This is a super useful functionality. My challenge is that I am not as adept at VBA scripting as most are. Would it be possible for me to have a step-by-step instructions of what should I do? I will be eternally grateful.

    Thanks in advance.

    Reply
    • Diane Poremsky says

      August 8, 2015 at 1:52 pm

      see https://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/ - it has the instructions to use VBA. Copy the code on this page to a new module (right click on Project1 and choose insert > module) then customize the ribbon or quick access toolbar to add buttons for the short that tell the code which folder to use.

      Reply
  11. Michael Muselík (@MichaelMuselik) says

    February 5, 2015 at 3:19 am

    Hi Diane, thats almost exactly, what I need. But ... there is any possibility to modify this macro to force select task folder in pop-up window? I usually use three task folders. Thnx a lot.

    Reply
    • Diane Poremsky says

      February 8, 2015 at 1:37 am

      If you don't want to use 3 separate buttons (one for each task folder) you could use a userform or a folder picker.

      The basics of a userform as a picker is here. I'll have to see if i can find the Outlook folder picker macro - it's here somewhere. :)

      Reply
      • Diane Poremsky says

        February 8, 2015 at 1:39 am

        Ah.. here is the folder picker code snippet
        Dim objApp As Application
        Dim objNS As NameSpace
        Dim objFolder As MAPIFolder

        Set objApp = CreateObject(“Outlook.Application”)
        Set objNS = objApp.GetNamespace(“MAPI”)
        Set objFolder = objNS.PickFolder

  12. mike says

    November 4, 2014 at 7:24 am

    thanks for the cool utility. it creates the task in the right folder and then displays it. the only problem im having is that the changes i make when i edit the subject or note field on the newly created task dont actually save for some reason. any ideas?

    Reply
    • Diane Poremsky says

      November 4, 2014 at 8:44 am

      so clicking Save after making the changes doesn't work? Do you get any error messages?

      Reply
      • mike says

        November 4, 2014 at 8:59 am

        no error message. i change the subject a little and add some text in the body and click save and close. no error. but when i look go into the specific task folder the changes didnt take.

      • Diane Poremsky says

        November 4, 2014 at 9:01 am

        I'll try to repro - it *should* work.

      • mike says

        November 4, 2014 at 2:38 pm

        thanks Diane. let me know if you need anymore info.

      • mike says

        November 5, 2014 at 9:28 pm

        hi diane, i see what is happening....when i make changes to subject after the task is displayed and then save/close it actually saves a new task in the main Task folder versus saving the info to the task created in the specified folder....any ideas?

      • Diane Poremsky says

        November 8, 2014 at 8:02 pm

        What type of email account? It might be a problem with the account type - I'll look into it.

      • Mike says

        November 9, 2014 at 10:23 am

        Outlook 2013 professional. Exchange server. the interesting thing is that at the bottom of the task window of the task that is displayed from the vba script it says "in shared folder Tasks".... however when I manually open the task that was created and moved into the correct folder it correctly displays "in shared folder @errands"... its like it forgot what folder it was in when the .display code executes...

      • Diane Poremsky says

        November 9, 2014 at 11:21 pm

        So its moved but the folder name is not updating in the status bar?

      • Drew says

        November 10, 2014 at 1:13 am

        Super excited about this! But I also am seeing the same thing Mike is seeing. If I make a change after .Display and save the task, I end up with a task in the right folder but with none of my changes applied, and a task in the default Task folder with the changes applied.

      • Diane Poremsky says

        November 11, 2014 at 12:22 am

        Ok - i figured it out - instead of using the default folder and moving the task, set the correct folder to add the task to it.

        Set taskFolder = Ns.GetDefaultFolder(olFolderTasks).Folders(tFolder)

        Set olTask = taskFolder.Items.Add(olTaskItem)
        With olTask
        .Subject = Item.Subject
        .Attachments.Add Item
        .Body = Item.Body
        .DueDate = Now + 1
        .Save
        .Display 'show the task to add notes
        End With

    • Mike says

      November 9, 2014 at 11:53 pm

      The task was created and moved with the email data into the sub folder as expected. However when the vba code displayed the task for editing it appears to think it's in the default task folder per the status bar at the bottom of the window. If I make a change and save it saves a new task into the default task folder. If I go into the sub folder and manually click open the task it works fine and the status bar shows it in the sub folder. One would think the display command would work just like manually clicking open the task in the sub folder but something is confusing it

      Reply
      • Diane Poremsky says

        November 11, 2014 at 12:12 am

        A lot of the VBA commands don't work exactly like the commands in the ribbon. You're working with the original, now unsaved, task - when you saved/moved it, it moved the saved copy not the onscreen copy.

        FYI - i updated the macro to use a specific task folder instead of moving the task. This should fix the problem.

      • mike says

        November 11, 2014 at 10:21 pm

        works great!! you are awesome Diane. thanks!

  13. brian davis says

    October 23, 2014 at 3:38 pm

    Outlook 2013. and actually, all i need is to move the task to a specific folder. the task is already created. What i want is a button on the ribbon that will save the task to a specific folder.

    Reply
    • Diane Poremsky says

      November 9, 2014 at 11:18 pm

      Is the task open? If so, this will move the task to a subfolder of the default tasks folder:

      Sub MoveTask()
      Dim Ns As Outlook.NameSpace
      Dim oApp As Outlook.Application
      Dim oTask As Outlook.TaskItem
      Dim moveTo As Outlook.folder

      Set Ns = Application.GetNamespace("MAPI")
      Set oApp = Outlook.Application
      Set oTask = oApp.ActiveInspector.CurrentItem
      Set moveTo = Ns.GetDefaultFolder(olFolderTasks).Folders("My Tasks")
      oTask.Move moveTo
      End Sub

      If it's not open, set the task using this instead
      Set oTask= oApp.ActiveExplorer.Selection.Item(1)

      https://www.slipstick.com/developer/outlook-vba-work-with-open-item-or-select-item/

      Reply
  14. brian davis says

    October 23, 2014 at 2:07 pm

    This isn't working. i get a "type mismatch" error when i run this.

    Reply
    • Diane Poremsky says

      October 23, 2014 at 3:31 pm

      Which version of Outlook? does it highlight any specific line in yellow when the error comes up? Oh, and are you running it on an email message? If you need to run it on other items that arrive by email, like NDR or reports, change this Dim Item As Outlook.mailItem to Dim Item As Object. And get the GetCurrentItem function from http://slipstick.me/e8mio

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 5

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Jetpack plugin with Stats module needs to be enabled.
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.