![]() |
VBA Code to check Task Status
Hi
What I'm looking for is some code I can run that will run through my task list and notify me of any tasks that are not complete. I'm not sure where to start. Can anyone give me any pointers. Thanks in advance. Melanie |
VBA Code to check Task Status
Am 2 Feb 2006 08:59:16 -0800 schrieb :
Dim oTask as Outlook.TaskItem Dim obj as Object For Each obj in Application.Session.GetDefaultFolder(olFolderTask) .Items If TypeOf obj Is Outlook.TaskItem then Set oTask=obj If oTask.Complete = False Then MsgBox "Another no completed task, subject: " & oTask.Subject Endif Endif Next -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook -- www.vbOffice.net -- Hi What I'm looking for is some code I can run that will run through my task list and notify me of any tasks that are not complete. I'm not sure where to start. Can anyone give me any pointers. Thanks in advance. Melanie |
VBA Code to check Task Status
Awesome! Thanks, I'll give that a try!
Melanie |
All times are GMT +1. The time now is 03:54 PM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com