D
DM
Hello
When I enter data into my Datasheet I begin by adding a
new row within the range, enter the dates, etc and
incident number...this is row A thru G..I then take rows
H thru AE from the row above and copy the formulas into my
new row that I just entered my dates etc.....
How can I modify this code to be attached to a button so I
can automaticaly copy this information so I don't have to
do it manually everytime..this code will copy H thru AE
but it shifts the cells...I don't need to shift the cells
but only copy the info....Unless there is a way to add a
new row and copy the formulas in H thru AE at the same
time....
Sub Shift_Down()
With Range("H2:AE2")
.Insert Shift:=xlDown
End With
End Sub
Thanx David
When I enter data into my Datasheet I begin by adding a
new row within the range, enter the dates, etc and
incident number...this is row A thru G..I then take rows
H thru AE from the row above and copy the formulas into my
new row that I just entered my dates etc.....
How can I modify this code to be attached to a button so I
can automaticaly copy this information so I don't have to
do it manually everytime..this code will copy H thru AE
but it shifts the cells...I don't need to shift the cells
but only copy the info....Unless there is a way to add a
new row and copy the formulas in H thru AE at the same
time....
Sub Shift_Down()
With Range("H2:AE2")
.Insert Shift:=xlDown
End With
End Sub
Thanx David