ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   how get rid of upper left green triangles? (https://www.excelbanter.com/excel-programming/281720-how-get-rid-upper-left-green-triangles.html)

Ian Elliott[_3_]

how get rid of upper left green triangles?
 
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.


Ron de Bruin

how get rid of upper left green triangles?
 

Hi Ian

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

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Ian Elliott" wrote in message ...
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.




Nigel[_5_]

how get rid of upper left green triangles?
 
Ian,

The tirangles are related to the Error Checking Options

You can turn them off using ToolsOptionsError 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

"Ian Elliott" wrote in message
...
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.





----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! 100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---


All times are GMT +1. The time now is 07:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com