Any help would be greatly appreciated....
Thanks,
DaveM.
http://www.cpearson.com/excel/excelM.htm#PrintComments
http://www.mvps.org/dmcritchie/excel/ccomment.htm
HTH
Jason
Atlanta, GA
>.
>
The sub below will cycle through the sheets and through all the cell on the
sheets and for any that have comments will list them out on another sheet
named Comments. Post back if this is not what you were looking for.
Sub ListComms()
Dim cell As Range
Dim sh As Worksheet
Dim csh As Worksheet
Set csh = ThisWorkbook.Sheets("Comments")
For Each sh In ThisWorkbook.Worksheets
If sh.Name <> csh.Name Then
For Each cell In sh.UsedRange
If Not cell.Comment Is Nothing Then
With csh.Range("a65536").End(xlUp).Offset(1, 0)
.Value = sh.Name & " " & cell.Address
.Offset(0, 1).Value = cell.Comment.Text
End With
End If
Next cell
End If
Next sh
End Sub
--
Dick Kusleika
MVP - Excel
Post all replies to the newsgroup.
"Davers" <dav...@ameritech.net> wrote in message
news:altgcp$o0...@eccws12.dearborn.ford.com...
XL2002
File>PageSetUp>Sheet
Option to print comments, etc
If you want to print only the comments and not the sheet, hide the print
area first and then go to print.
--
Regards
William
willw...@yahoo.com
"Davers" <dav...@ameritech.net> wrote in message
news:altgcp$o0...@eccws12.dearborn.ford.com...