Hi I am trying to copy all the comments in a worksheet("HR&Finance") in Workbook1 to another worksheet("Budget") in Workbook2.
So far I recorded the below code in the worksheet in workbook1 and ran the code with the two workbooks open but it says subscript out of range error...
Can you give me some advice on how to fix this?
Thank you!
Sub comment()
'
' comment Macro
'
'
Range(A:Z).Select
Selection.Copy
Windows("Workbook2").Activate
Range(A:Z).Select
ActiveSheet.Paste
End Sub