hi!
want to insert row in worksheet2.
the value of range ? is in worksheet1 cell E1.
tanks forhelp
want to insert row in worksheet2.
the value of range ? is in worksheet1 cell E1.
Code:
Dim a As Long
a = Worksheets("Sheet1").Range("E1").Value
Worksheets("Sheet2").Activate
Range("A1").Select
Range("a1: ? ").EntireRow.Insert
tanks forhelp
Last edited: