| 
Reporter
 | 
| VBOffice Reporter is an easy to use tool for data analysis and reporting in Outlook. A single click, for instance, allows you to see the number of hours planned for meetings the next month. | 
In Outlook you can create views of your own. While it's not possible to copy or inherit views, you can do that with a few lines of VBA code since Outlook XP. The sample asks once for the folder with the view that you want to copy, then it asks for the destination folders until you click cancel.
Public Sub CopyView()
  Dim SourceFolder As Outlook.MAPIFolder
  Dim TargetFolder As Outlook.MAPIFolder
  Set SourceFolder = Application.Session.PickFolder
  If Not SourceFolder Is Nothing Then
    Set TargetFolder = Application.Session.PickFolder
    While Not TargetFolder Is Nothing
      If TargetFolder.DefaultItemType = SourceFolder.DefaultItemType Then
        With TargetFolder.CurrentView
          .xml = SourceFolder.CurrentView.xml
          .Save
        End With
      Else
        MsgBox "Source and target folder must be of the same type.", vbInformation
      End If
      Set TargetFolder = Application.Session.PickFolder
    Wend
  End If
End Sub