J
JOYCE
I have a spreadsheet that contains several formulas in
each row. I want to be able to insert a new row in this
spreadsheet that will contain these formulas without
having to copy and paste a row from above or below.
The macro I created works correctly only once. Everything
shifts down from the insertion point which loses the cell
reference, plus it only wants to insert at the exact row
when the macro was recorded.
The only experience I've had in macros was a long time ago
(Lotus123 DOS). Please help...I would love to learn more!
Sub Macro1()
'
' Macro1 Macro
' Inserts a new row with formulas
'
' Keyboard Shortcut: Ctrl+i
'
Rows("103:103").Select
Selection.Insert Shift:=xlDown
End Sub
each row. I want to be able to insert a new row in this
spreadsheet that will contain these formulas without
having to copy and paste a row from above or below.
The macro I created works correctly only once. Everything
shifts down from the insertion point which loses the cell
reference, plus it only wants to insert at the exact row
when the macro was recorded.
The only experience I've had in macros was a long time ago
(Lotus123 DOS). Please help...I would love to learn more!
Sub Macro1()
'
' Macro1 Macro
' Inserts a new row with formulas
'
' Keyboard Shortcut: Ctrl+i
'
Rows("103:103").Select
Selection.Insert Shift:=xlDown
End Sub