Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hello from Steved
I have over 360 comment boxes in Excel. Question please. Is there away to have all the comment boxes the same size. Thankyou. |
#2
![]() |
|||
|
|||
![]()
Some code is necessary:
Hit ALT+F11 to open Visual Basic Editor Insert a Module Paste this code. Put your cursor in the code and hit F5. Sub test() Dim rng As Range For Each rng In Cells.SpecialCells(xlCellTypeComments) With rng.Comment.Shape .Width = 200 .Height = 200 End With Next End Sub -- Rob van Gelder - http://www.vangelder.co.nz/excel "Steved" wrote in message ... Hello from Steved I have over 360 comment boxes in Excel. Question please. Is there away to have all the comment boxes the same size. Thankyou. |
#3
![]() |
|||
|
|||
![]()
Thankyou
-----Original Message----- Some code is necessary: Hit ALT+F11 to open Visual Basic Editor Insert a Module Paste this code. Put your cursor in the code and hit F5. Sub test() Dim rng As Range For Each rng In Cells.SpecialCells(xlCellTypeComments) With rng.Comment.Shape .Width = 200 .Height = 200 End With Next End Sub -- Rob van Gelder - http://www.vangelder.co.nz/excel "Steved" wrote in message ... Hello from Steved I have over 360 comment boxes in Excel. Question please. Is there away to have all the comment boxes the same size. Thankyou. . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
comment boxes | Excel Discussion (Misc queries) | |||
Comment position..?? | 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 | |||
Comment associated with a cell | Excel Worksheet Functions |