exporting comments into a separate spreadsheet?

  • Thread starter Thread starter Joe
  • Start date Start date
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?
 
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
 
Back
Top