Assuming that the file you had uploaded does not require any modifications like adding rows / columns, the below macro will be able to copy paste the values from columns C, D into columns J:U. This will unprotect the worksheet, copy paste values into the destination cells and again re-protect the sheet:
Sub Copy_Pate_Values()
Sheet1.Unprotect Password:="abcd" 'Replace abcd with your password
Range("C4:D4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Range("C4").Offset(0, 7).Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("C4").Offset(0, 9).Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("C4").Offset(0, 11).Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("C4").Offset(0, 13).Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("C4").Offset(0, 15).Select
Selection.PasteSpecial Paste:=xlPasteValues
Range("C4").Offset(0, 17).Select
Selection.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Sheet1.Protect Password:="abcd" 'Replace abcd with your password
End Sub
To copy this macro into your workshet, follow the following steps:
1. Press Alt + F11 while you are on the workbook
2. Double click on "ThisWorkbook"
3. Paste the above macro
Now press F5 to run the macro or on your excel file type Alt + T + M + M, then select "ThisWorkbook.Copy_Pate_Values" and click on Run
Bookmarks