burnin2emax
New Member
- Joined
- Nov 9, 2005
- Messages
- 10
Hi, hope someone can help.
I want to create a macro that will insert a row specified by the cursor.
And in this newly created row, I want to copy a range of formulas.
If I do it as specified below,it will paste the values beginning from the cursor that was initially selected. What additional command should I add so that the formulas are copied to a specified column of the newly created row.
Or is there any simpler ways to do it.
ActiveCell.EntireRow.Insert
n=ActiveCell.Address
Range("Sheet2!E2:L2").Copy Range
Thanks in advance.
-Excel Noob-
I want to create a macro that will insert a row specified by the cursor.
And in this newly created row, I want to copy a range of formulas.
If I do it as specified below,it will paste the values beginning from the cursor that was initially selected. What additional command should I add so that the formulas are copied to a specified column of the newly created row.
Or is there any simpler ways to do it.
ActiveCell.EntireRow.Insert
n=ActiveCell.Address
Range("Sheet2!E2:L2").Copy Range
Thanks in advance.
-Excel Noob-