The code below will insert a new row above column 2 whenever the macro is ran. However, if I click a different sheet and run the macro, it inserts a new row in that sheet instead of Sheet 1 like I had specified. Is there a way to make it so that when I run the macro it will only do those actions on a particular sheet no matter what sheet I am on?
With Worksheets("Sheet 1")
Rows("2:2").Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
End With