Hi Nitesh,
Create your destination sheet, call it "Sheet2" and add the header in range B1:W1.
Then run the following code:
Sub RunMe()
Dim x, sR, dR, sC, lRow As Long
Sheets("Sheet1").Select
lRow = Range("B" & Rows.Count).End(xlUp).Row
dR = 2
For sR = 2 To lRow
x = 1
sC = 24
Range(Cells(sR, "B"), Cells(sR, "W")).Copy
Sheets("Sheet2").Select
Range(Cells(dR, "B"), Cells(dR + 6, "B")).Select
Selection.PasteSpecial
Sheets("Sheet1").Select
Do
Range(Cells(sR, sC), Cells(sR, sC + 10)).Copy Sheets("Sheet2").Range("K" & dR + x)
x = x + 1
sC = sC + 13
Loop Until x = 7
dR = dR + 7
Next sR
End Sub
Best regards,
Trowa