Error Checking Options - 2000-2003

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
 
G

Gord Dibben

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top