Я полагаю, что приведенное ниже должно работать, чтобы быть в безопасности, я бы удалил данные в Медине-15-17, строки 11 на:
'The 2 refers to column "B" on the Master worksheet, change to 1 if in column "A"
summary_row = Worksheets("Master").Cells(Rows.Count, 2).End(xlUp).Row
For Each cell In Worksheets("Master").Range("B2:B" & summary_row)
'this gets a new row count for each iteration
temp_row = Worksheets("Summary").Cells(Rows.Count, 1).End(xlUp).Row
With Worksheets("Summary")
'this copy/pastes the templated range
.Range("A1:E7").Copy Range("A" & temp_row + 2)
'this inserts, from the master worksheet, the title
.Range("A" & temp_row + 2).Value = cell
End With
Next cell