Syntax

expression.MultiUserEditing

expression A variable that represents a Workbook object.

Remarks

To save a workbook as a shared list, use the SaveAs method. To switch the workbook from shared mode to exclusive mode, use the ExclusiveAccess method.

Example

This example determines 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 Not ActiveWorkbook.MultiUserEditing Then ActiveWorkbook.SaveAs fileName:=ActiveWorkbook.FullName, _ accessMode:=xlShared End If
Determine whether this application is shared? Find out multi-user access to workbook? multi user editing Multi User Editing Property multiuser MultiUserEditing MultiUserEditing Property MultiUserEditing?

See also: