Sub f()
Dim chk As CheckBox
Application.ScreenUpdating = False
With Rows(Cells(Rows.Count, 1).End(xlUp).Row - 1)
.Copy: .Insert Shift:=xlDown
End With
For Each chk In ActiveSheet.CheckBoxes
With chk
.LinkedCell = .TopLeftCell.Address
End With
Next
End Sub