Oulook Question

PondWaters

New Member
Joined
Jun 26, 2012
Messages
36
Office Version
  1. 365
We have a folder at work that is used by hundreds of people. Sometimes, people will move an email in error and we don't have a way of knowing who did it. Is there a function or somethign within Outlook that will let you see the "activity log" of what happened with an email? Basically, if James moved an email to Jill's folder, we need to know why and when it was moved (and anyone else who may have moved the email).
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I don't know about a full "activity log". But you might be able to get some info this way --

-- Put this into an Outlook module:
Code:
Sub GetMyInfo()Dim MyMailItem
Set MyMailItem = Application.ActiveInspector.CurrentItem
Stop
End Sub

-- Open one of your suspect emails

-- Run the code in the VBE; when it hits "Stop", open the Locals window and dig around in the MyMailItem properties to see if you find anything that helps you. If you do, post back and we can help expand the code.

Ed
 
Upvote 0

Forum statistics

Threads
1,225,626
Messages
6,186,089
Members
453,336
Latest member
Excelnoob223

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top