ShowConflictHistory Property

Microsoft Excel Visual Basic

ShowConflictHistory Property

       

True if the Conflict History worksheet is visible in the workbook that's open as a shared list. Read/write Boolean.

Remarks

If the specified workbook isn't open as a shared list, this property fails. To determine whether a workbook is open as a shared list, use the MultiUserEditing property.

Example

This example determines whether the active workbook is open as a shared list. If it is, the example displays the Conflict History worksheet.

If ActiveWorkbook.MultiUserEditing Then
    ActiveWorkbook.ShowConflictHistory = True
End If