Hi All

Wrote VBA code to disable the error-checking options (in Excel 2003);

With Application.ErrorCheckingOptions
.BackgroundChecking = False
.EvaluateToError = False
.TextDate = False
.NumberAsText = False
.InconsistentFormula = False
.OmittedCells = False
.UnlockedFormulaCells = False
.EmptyCellReferences = False
.ListDataValidation = False
End With

Works fine, BUT

Sent to a colleague, using a different verison of excel, gives an error.
Do the error checking options differ in 2002 and 2000? If so, what are the options available in these versions?? I tried long and hard to find the answer, I think 2002 has the same options, but cannot find anything for 2000

Any help will be appreciated