how get rid of upper left green triangles?

I

Ian Elliott

Thanks in advance.
I have a macro that using OpenText takes some numbers and
puts them in columns.
After doing this, Excel puts those little green triangles
in the upper left corner. I want to get rid of these cause
they are an eyesore.
I recorded a macro of clicking on the cell, clicking on
the down arrow to the left of the cell when the down arrow
shows up, and clicking on 'Ignore Error', but the macro
just records Range("A1").Select.
Anyone know some code to get rid of these triangles?
Thanks again.
 
R

Ron de Bruin

Hi Ian

Go to Tools -Options ...Error Checking
Now deselect all things you not wnat to check
 
N

Nigel

Ian,

The tirangles are related to the Error Checking Options

You can turn them off using Tools>Options>Error Checking panel from the
Excel Menu or in VBA code with the following....... Set them to True to
turn them on again.

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

Cheers
Nigel
 

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