exporting comments into a separate spreadsheet?

J

Joe

I'd like to take all the comments from a single row, copy them and
paste them into another spreadsheet, is that possible?
 
M

Mike H

Joe,

2 ways.

1. Select the row with comments in and copy it and then go to the new sheet
and
Edit|Paste special and select comments.

1. A Macro which is over the top given the simplicity of 1. Right click the
sheet tab, view code and paste this in

Sub mariner()
Sheets("Sheet1").Rows("1:1").Copy
Sheets("Sheet2").Rows("1:1").PasteSpecial Paste:=xlPasteComments
End Sub

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top