Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Something has happened to a spreadhseet whereby all the comments have really
long indicators spreading down over multiple cells. How can these be corrected without doing each one at a time? Thanks for help D |
#2
![]() |
|||
|
|||
![]()
Try running this macro:
Option Explicit Sub ResetComments() Dim ws As Worksheet Dim CmmtRng As Range Dim cell As Range Dim CopyTxt As String Set ws = ActiveSheet Set CmmtRng = ws.Cells.SpecialCells(xlCellTypeComments) For Each cell In CmmtRng With cell CopyTxt = .Comment.Text .Comment.Delete .AddComment .Comment.Text Text:=CopyTxt .Comment.Visible = True End With Next End Sub --- To run, press ALT+F11, go to Insert Module, and paste in the code above. Press ALT+Q to close. Go to Tools Macro Macros. HTH Jason Atlanta, GA -----Original Message----- Something has happened to a spreadhseet whereby all the comments have really long indicators spreading down over multiple cells. How can these be corrected without doing each one at a time? Thanks for help D . |
#3
![]() |
|||
|
|||
![]()
There's sample code here to reset the comments:
http://www.contextures.com/xlcomments03.html#Reset Deb wrote: Something has happened to a spreadhseet whereby all the comments have really long indicators spreading down over multiple cells. How can these be corrected without doing each one at a time? Thanks for help D -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell comment boxes shouldn't change size/shape unless changed by u | Excel Discussion (Misc queries) | |||
New Excel Comment Box Issue | Excel Discussion (Misc queries) | |||
Comment Indicators | Excel Discussion (Misc queries) | |||
comment indicators should feature lock or pw protect limiting acc. | Excel Worksheet Functions | |||
a comment plugin & copy paste directly from excel to comment ? fr. | Excel Worksheet Functions |