VBOffice

Get the Outlook Version

This macro tells you which Outlook version is running.

Last modified: 2014/01/01 | Accessed: 50.796  | #110
◀ Previous sample Next sample ▶
Reporter 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.

The entire version number is available in the Application.Version property. The first two digits reveal the major version.

Outlook VersionVersion Number
201315.x
201014.x
200712.x
200311.x
200210.x
20009.x

tip  How to add macros to Outlook
Private Function GetOutlookVersion() As Long
  Dim v as String
  v = left$(Application.Version, 2)
  Select Case v
  Case "8.": GetOutlookVersion = 8
  Case "9.": GetOutlookVersion = 9
  Case Else: GetOutlookVersion = v
  End Select
End Function
Category-Manager Category-Manager
With Category-Manager you can group your Outlook categories, share them with other users, filter a folder by category, automatically categorize new emails, and more. You can use the Addin even for IMAP.
email  Send a message