Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
MEANLEANDEANE
 
Posts: n/a
Default DELETION OF TRIANGLES FROM COMPLETE COLUMN

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?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Otto Moehrbach
 
Posts: n/a
Default DELETION OF TRIANGLES FROM COMPLETE COLUMN

Do you mean the comment indicators? If so, select all those cells and do
Edit - Clear - Comments. HTH Otto
"MEANLEANDEANE" wrote in message
...
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?



  #3   Report Post  
Posted to microsoft.public.excel.misc
tghcogo
 
Posts: n/a
Default DELETION OF TRIANGLES FROM COMPLETE COLUMN


If it's green triangles, you could try unchecking "Formulas referring to
empty cells"

Tools/options/error checking

TGHC


--
tghcogo
------------------------------------------------------------------------
tghcogo's Profile: http://www.excelforum.com/member.php...o&userid=10494
View this thread: http://www.excelforum.com/showthread...hreadid=494834

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default DELETION OF TRIANGLES FROM COMPLETE COLUMN

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
HOW DO I REMOVE MARKERS IN A COMPLETE COLUMN? MEANLEANDEANE Excel Worksheet Functions 2 September 30th 05 07:52 PM
Lookup Table Dilemma Karen Excel Worksheet Functions 2 June 10th 05 08:22 PM
Count Position of Filtered TEXT cells in a column Sam via OfficeKB.com Excel Worksheet Functions 8 May 18th 05 04:23 AM
How to group similar column titles together???? vrk1 Excel Discussion (Misc queries) 2 April 30th 05 12:17 AM
Return Count for LAST NonBlank Cell in each Row Sam via OfficeKB.com Excel Worksheet Functions 12 April 17th 05 10:36 PM


All times are GMT +1. The time now is 02:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"