This is a macro i have been using to update update information from one sheet to the next empty row in another sheet within the same workbook.
Sheet2.Unprotect Password:="Climber7c+"
With Sheets("FeedbackForm").Range("B7:N8")
.Copy Destination:=Sheets("Feedback & Performance").Range("A" & Rows.Count).End(xlUp).Offset(1)
.ClearContents
Sheet2.Protect Password:="Climber7c+"
The problem is i don't want to copy the formating, cell protection properties and comments, just the values with in the cells.
Can anyone help me alter my code to perform this?
Thanks,
Sheet2.Unprotect Password:="Climber7c+"
With Sheets("FeedbackForm").Range("B7:N8")
.Copy Destination:=Sheets("Feedback & Performance").Range("A" & Rows.Count).End(xlUp).Offset(1)
.ClearContents
Sheet2.Protect Password:="Climber7c+"
The problem is i don't want to copy the formating, cell protection properties and comments, just the values with in the cells.
Can anyone help me alter my code to perform this?
Thanks,