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

Send a Task Status Report

Slipstick Systems

› Outlook › Send a Task Status Report

Last reviewed on March 18, 2015     15 Comments

Task items have a button to send a Status Update; click this button to generate a message containing the details of the task.

send a status report

If you always need to send the update to the same email addresses, you can use a macro to call the Status Report function and address the message.

Every day I send the same status report, to the same team, with the same one-line statement. The details of the task need to be in the body of the message, (not as an attachment) with an additional line of text from me.

This macro uses the Status Report function in an open Task to generate the email and Word functions to insert a note at the top. If you don't need to add a note you can remove Dim and Set lines used to access the Word editor and just send the status report.

Sub SendStatusReport()
 Dim myTask As Outlook.TaskItem
 Dim myinspector As Outlook.Inspector
 Dim myReport As Object

' used to insert message
Dim olDocument As Word.Document
Dim olSelection As Word.Selection

 Set myinspector = Application.ActiveInspector
 If Not TypeName(myinspector) = "Nothing" Then
 If TypeName(myinspector.CurrentItem) = "TaskItem" Then
 Set myTask = myinspector.CurrentItem
 Set myReport = myTask.StatusReport
 myReport.To = "me@domain.com"

 myReport.Display
 
' used to insert message
Set olDocument = myinspector.WordEditor
Set olSelection = olDocument.Application.Selection
 
olSelection.InsertBefore "This task is complete!"

' myReport.Send

 Else
 MsgBox "No task item is currently open."
 End If
 Else
 MsgBox "No inspector is currently open."
 End If
End Sub

Work with Open or Selected Task

To work with either an open or selected task item, you need to use the GetCurrentItem function.


Sub SendStatusReportAny()
 Dim myTask As Object
 Dim myReport As Object

' used to insert message
Dim olInspector As Outlook.Inspector
Dim olDocument As Word.Document
Dim olSelection As Word.Selection

Set myTask = GetCurrentItem()
On Error Resume Next

 If Not TypeName(myTask) = "TaskItem" Then
 MsgBox "Open or select a Task before running this macro!"
 Exit Sub
 End If
 
 Set myReport = myTask.StatusReport
 myReport.To = "me@domain.com"

 myReport.Display
 
' used to insert message
Set olInspector = Application.ActiveInspector()
Set olDocument = olInspector.WordEditor
Set olSelection = olDocument.Application.Selection
 
olSelection.InsertBefore "This task is complete!"

' myReport.Send

End Sub

Create your own status report

To compose your own Task status report, create the email message "from scratch" and add the Task fields to the message body. Like the previous macro, this one also uses the GetCurrentItem function.

Sub SendStatusReportNewMessage()
 Dim myTask As Object
 Dim myReport As Outlook.MailItem
 Dim strBody As String

Set myTask = GetCurrentItem()
On Error Resume Next
 If Not TypeName(myTask) = "TaskItem" Then
 
 MsgBox "Open or select a Task before running this macro!"
 Exit Sub
 End If

 strBody = "I finished this task!" & vbCrLf & _
 "Subject: " & myTask.Subject & vbCrLf & _
 "Task Date Completed: " & myTask.DateCompleted & vbCrLf & _
 "Task Complete: " & myTask.Complete & vbCrLf & _
 "Task notes: " & myTask.Body & vbCrLf & _
 "For : " & myTask.Companies & vbCrLf & _
 "Contacts: " & myTask.ContactNames & vbCrLf
 
 
 Set myReport = Application.CreateItem(olMailItem)
 
 With myReport
 
  .To = "me@domain.com"
  .Subject = myTask.Subject
  .Body = strBody
  .Display '.Send
End With

End Sub

How to use macros

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s 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.

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.

Add a button for the macro to an open Task form. Click the button to run the macro. More information as well as screenshots are at How to use the VBA Editor

Send a Task Status Report was last modified: March 18th, 2015 by Diane Poremsky

Related Posts:

  • Task Request Status Update Address Missing
  • Remove Email Signature from Message using VBA
  • Add Attachment Names to Message Before Sending
  • Insert or change an Outlook signature using VBA

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.

Subscribe
Notify of
15 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

Carolina Echeverri
June 10, 2016 9:45 am

I have created and assigned a task to an employee. If I want to add details to the task later I have been clicking on "Send Status Report" but when I go back to the task the "added" info is not reflected on the task itself. Where are those updates "living"?

0
0
Reply
Diane Poremsky
Author
Reply to  Carolina Echeverri
August 26, 2016 9:12 pm

sorry i missed this before.. that just sends an email. once you assign it, it's no longer yours... if you need to add notes, create an unassigned copy (details tab).

0
0
Reply
Kam
January 9, 2016 11:14 am

Hi Diane,
Any update on my December 20, 2015 2:35 pm question.
I am using exchange 2007

0
0
Reply
Diane Poremsky
Author
Reply to  Kam
April 15, 2016 5:51 pm

Sorry, I'm way behind in answering questions. :(

0
0
Reply
kam
December 20, 2015 2:35 pm

Hi,

This is exactly the problem I am facing with outlook "task requests".
Once task requests are sent, they appear in the recipient's outlook inbox and also immediately pushed to his Iphone "reminders" app, or Samsung "S planner" app, configured with MS exchange server 2007.

My problem is: if you send a task request to a user, the task request appears immediately on his phone, only if his PC was open and his outlook was open, but if his outlook was not open, the task request does not get pushed to the phone ! once he turns on his PC and the task requests gets updated into his outlook inbox, they appear on the phone!!

How can we solve this, i.e. the task requests get pushed to the phone even if the PC was not on and the outlook is not open??

0
0
Reply
Diane Poremsky
Author
Reply to  kam
April 15, 2016 5:52 pm

I don't think there is a solution, at least not one i can think off offhand.

0
0
Reply
kam
August 13, 2015 3:06 pm

Hi,

I am doing the task requests project above and I have a third issue:
i need to be able to assign task request and prevent the assignee from being able to change the due date after he accepts the task request
how can that be achieved?

0
0
Reply
Diane Poremsky
Author
Reply to  kam
August 13, 2015 3:31 pm

This isn't possible - once accepted, the person you assigned it to owns it.

0
0
Reply
kam
July 31, 2015 10:54 am

I have another issue, which is:
tracking assigned tasks by more than one user.
if I assign a task to someone, I get updates on the task request in my outlook (update copy), I need this user's manager to track the progress on the task also.
how can I create an updated copy of the task request on the manager's outlook besides my outlook?

0
0
Reply
Diane Poremsky
Author
Reply to  kam
August 13, 2015 3:38 pm

When you create the task, look in file, properties for the send have replies sent to field - enter the manager's address there. I have not tried it, so i can't say if it will work... but it would be the only way.

0
0
Reply
Diane Poremsky
Author
Reply to  Diane Poremsky
August 13, 2015 3:41 pm

in a quickie test, it looks like it works only if they hit replay all - updates go to the person who created it.

0
0
Reply
kam
July 31, 2015 10:49 am

2007 exchange server, task appear in the reminders, but task requests assigned by another user, they appear only if the assignee accepts the task request, but the problem is there is no way to accept task requests on Iphone it has to be on PC outlook.

0
0
Reply
Diane Poremsky
Author
Reply to  kam
August 13, 2015 3:42 pm

They'd need to use OWA to accept it. There might be some apps that can accept tasks too.

0
0
Reply
Kam
July 17, 2015 3:52 am

Hi
Task requests do not appear on iphone reminders app like the normal tasks
any solution to this?

0
0
Reply
Diane Poremsky
Author
Reply to  Kam
July 29, 2015 10:55 pm

Hmmm. They should be in the reminders. What type of email account and how are you syncing tasks?

1
-1
Reply

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

Latest EMO: Vol. 30 Issue 33

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.
  • 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
  • Import EML Files into New Outlook
  • Opening PST files in New Outlook
  • New Outlook: Show To, CC, BCC in Replies
  • Insert Word Document into Email using VBA
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

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

Import EML Files into New Outlook

Opening PST files in New Outlook

New Outlook: Show To, CC, BCC in Replies

Insert Word Document into Email using VBA

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 © 2025 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment