Error Checking Options - 2000-2003

  • Thread starter Thread starter brianbishop
  • Start date Start date
B

brianbishop

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 a
error.
Do the error checking options differ in 2002 and 2000? If so, what ar
the options available in these versions?? I tried long and hard to fin
the answer, I think 2002 has the same options, but cannot find anythin
for 2000

Any help will be appreciate
 
Don't believe the error-checking feature was available for 2000 version.

Never used 2000 but I am fairly positive EC was first introduced with 2002
version.

Definitly is available for 2002 and 2003.


Gord Dibben MS Excel MVP
 
Back
Top