Change Task Priority without open the Task Item

Joined
May 18, 2009
Messages
4
Reaction score
0
Hello, is it possible to change priority from High to Normal on a Task without open it, only select the task in Outlook Activity ? I've a macro but when i launch it nothing appened. Any suggestion ?


Sub prova()
'Pick the task item
Dim objTask As Outlook.TaskItem
Set objTask = Application.CreateItem(olTaskItem)

'See if the importance is high, then set it to normal
If objTask.UserProperties("Activity Priority").Value = "High" Then
objTask.Importance = olImportanceNormal
End If

'save it back
objTask.Save
Set objTask = Nothing
End Sub
 
Joined
Jun 24, 2009
Messages
1
Reaction score
0
If in Office 2003 or 2007

View your task list.
On the left hand side of the screen in the Navigation window choose detailed view from the list of views.

YOu will now see a field appear to the left of your task title headed by and exclaimation mark.. Click in the white box and you get the three options for priority, high, normal or low select the one you want

voila!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top