Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I have numerous comment boxes in an Excel spreadsheet. I want to print the comment boxes, but when I select the option to show the comments on the sheet, they have moved quite a distance from the cell (I have added a lot of columns). Is there a way to quickly re-set the comments to appear close to the cell they are in? If I have to manually drag and move them it will take a long time. Any help is much appreciated. Thanks. John |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Why don't you extract the comments to the exact location of a new worksheet
and then print it out? "John M" ????? ... Hello, I have numerous comment boxes in an Excel spreadsheet. I want to print the comment boxes, but when I select the option to show the comments on the sheet, they have moved quite a distance from the cell (I have added a lot of columns). Is there a way to quickly re-set the comments to appear close to the cell they are in? If I have to manually drag and move them it will take a long time. Any help is much appreciated. Thanks. John |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The following code will align all comment boxes to the right of the cell
which contains the comment. John M wrote: I have numerous comment boxes in an Excel spreadsheet. I want to print the comment boxes, but when I select the option to show the comments on the sheet, they have moved quite a distance from the cell (I have added a lot of columns). Is there a way to quickly re-set the comments to appear close to the cell they are in? If I have to manually drag and move them it will take a long time. Any help is much appreciated. Thanks. -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops! Somehow, the code fell out of the message on its way to the server:
Sub ResetComments() Dim cmt As Comment For Each cmt In ActiveSheet.Comments cmt.Shape.Top = cmt.Parent.Top + 5 cmt.Shape.Left = cmt.Parent.Offset(0, 1).Left + 5 Next End Sub Debra Dalgleish wrote: The following code will align all comment boxes to the right of the cell which contains the comment. John M wrote: I have numerous comment boxes in an Excel spreadsheet. I want to print the comment boxes, but when I select the option to show the comments on the sheet, they have moved quite a distance from the cell (I have added a lot of columns). Is there a way to quickly re-set the comments to appear close to the cell they are in? If I have to manually drag and move them it will take a long time. Any help is much appreciated. Thanks. -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel VBA and Comment boxes | Excel Worksheet Functions | |||
pictures in comment boxes? | Excel Discussion (Misc queries) | |||
Comment Boxes | Excel Discussion (Misc queries) | |||
Comment Boxes | Excel Worksheet Functions | |||
comment boxes | Excel Discussion (Misc queries) |