The following macro in Outlook should work to produce a list of categories
in a Word document.
Set a reference to the Microsoft Word object library in the vba editor
(Tools > References).
Although aimed at Word the principles shown athttp://
www.gmayor.com/installing_macro.htmapply to Outlook also should you
not know what to do with macro listings.
Sub MyCategories()
Dim oCat As Category
Dim sList As String
Dim wdApp As Word.Application
Dim wdDoc As Word.Document
Dim bStarted As Boolean
sList = ""
For Each oCat In Session.Categories
sList = oCat & vbCr & sList
Next oCat
On Error Resume Next
Set wdApp = GetObject(, "Word.Application")
If Err Then
Set wdApp = CreateObject("Word.Application")
bStarted = True
End If
Set wdDoc = wdApp.Documents.Add
wdApp.Visible = True
wdApp.Activate
wdDoc.Range = sList
Set wdDoc = Nothing
Set wdApp = Nothing
Set oCat = Nothing
End Sub