I want to make array of cells in excel to using VBA to add new row, I used this code
Private Sub add_Click()
Sheets("Block B").Range("C8").Select
ActiveCell.EntireRow.Insert Shift:=xlDown Sheets("Block B").Range("C8:L8").Select Selection.Borders.Weight = xlThin
But the new line insert in exact raw 8, I want in each click to add a new row in the next row 8, 9, 10, ...
How can I do it ?