I am trying to have my spreadsheet automatically take the previous rows format and formulas when a new row is inserted.
I read where you can set up your sheet to a
It looks like you are attached to the wrong event. You have attached your code to the "Worksheet_Change" event, but your code is also causing a change to the worksheet
Cells(1, 2).Value = 10
Which turns right around and invokes the "Worksheet_Change" event.
As for the right event to attach to, it looks like there is no native event for "New Row Inserted".
There is a discussion of this over on this page which might be an answer to your problem...