Basic view/print question

ksucats4me

New Member
Joined
Jun 28, 2008
Messages
27
Is there an option in excel that will print all of my comments put into cells? I see this as a very powerful option that can strengthen my documentation process.

Thanks?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
File>PageSetUp>Sheet Tab
For Comments select
1)None(default)
2)At end of Page
3)As Displayed

lenze
 
Upvote 0
Thanks... found it almost immediately! Not a perfect format, but better than what I had before!
 
Upvote 0
You could use a macro to copy comments to a new sheet and print that sheet.
Code:
Sub CommentMe()
Dim cm As Comment
Dim mytext As String
Dim i As Long
i = 1
For Each cm In ThisWorkbook.ActiveSheet.Comments
mytext = cm.Text
ThisWorkbook.Sheets("Sheet2").Cells(i, "A") = mytext
i = i + 2
Next cm
End Sub

lenze
 
Upvote 0

Forum statistics

Threads
1,214,594
Messages
6,120,436
Members
448,964
Latest member
Danni317

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top