Syntax

expression.RevisionNumber

expression A variable that represents a Workbook object.

Remarks

The RevisionNumber property is updated only when the local copy of the workbook is saved, not when remote copies are saved.

Example

This example uses the revision number to determine whether the active workbook is open in exclusive mode. If it is, the example saves the workbook as a shared list.

Visual Basic for Applications
If ActiveWorkbook.RevisionNumber = 0 Then ActiveWorkbook.SaveAs _ filename:=ActiveWorkbook.FullName, _ accessMode:=xlShared, _ conflictResolution:= _ xlOtherSessionChanges End If
How many times has program been saved? Return revision number of shared workbook? revision revision number revision number property revisionnumber RevisionNumber Property

See also: