I'd like a button that asks user for the number of rows they want to add. That number of rows will then be added to multiple sheets (I want to define this), in the exact same place for each - A5 xldown offset 1,0. Copy formulas and formatting from above rows in each sheet. I can do it manually for each but can't grasp how to define the array and do the same in each sheet.
'for each worksheet that I define
Range("A5").Select
ActiveCell.End(xlDown).Select
ActiveCell.Offset(1, 0).Select
ActiveCell.EntireRow.Insert
Shift:=xlShiftDown,CopyOrigin:=xlFormatFromLeftOrAbove
'does copy origin copy both formulae and formatting?
Apologies in advance if code is poorly formatted