Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Could you mean the Error warnings (in the upper left)--little (usually) green
triangles. If yes, you can use a macro: Option Explicit Sub testme01() Dim myCell As Range Dim myRng As Range Dim wks As Worksheet Dim iCtr As Long Set wks = ActiveSheet With wks Set myRng = .Range("f1", .Cells(.Rows.Count, "F").End(xlUp)) For Each myCell In myRng.Cells '1 xlEvaluateToError '2 xlTextDate '3 xlNumberAsText '4 xlInconsistentFormula '5 xlOmittedCells '6 xlUnlockedFormulaCells '7 xlEmptyCellReferences '8 xlListDataValidation For iCtr = 1 To 8 With myCell.Errors(iCtr) If .Value = True Then .Ignore = True End If End With Next iCtr Next myCell End With End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm MEANLEANDEANE wrote: Is there a way of deleting the coloured triangles from all the cells in a column at the same time,instead of having to delete each one individually? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
HOW DO I REMOVE MARKERS IN A COMPLETE COLUMN? | Excel Worksheet Functions | |||
Lookup Table Dilemma | Excel Worksheet Functions | |||
Count Position of Filtered TEXT cells in a column | Excel Worksheet Functions | |||
How to group similar column titles together???? | Excel Discussion (Misc queries) | |||
Return Count for LAST NonBlank Cell in each Row | Excel Worksheet Functions |