Applies To
Workbook Object.
Description
True if the Conflict History worksheet is visible in the workbook that's open as a shared list. This property is available only in Microsoft Excel for Windows 95. Read-write.
Remarks
If the specified workbook isn't open as a shared list, ShowConflictHistory fails. To determine whether a workbook is open as a shared list, use the MultiUserEditing property.
See Also
MultiUserEditing Property, SaveAs Method, ShowConflictHistory 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