Workbook.ShowConflictHistory property (Excel)

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

Syntax

expression.ShowConflictHistory

expression A variable that represents a Workbook object.

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.