i have a macro that copies a set of cell from one sheet to another sheet. This information is added when the click a button. The snag is that i need the data to be serted between the already added data and the total formulas at the very bottom. This is the macro i have so far.
Sub
Sheets("Data").Select
Range("A17:O24").Select
Selection.Copy
Sheets("ALLL").Select
Range("A17").Select
Selection.Insert Shift:=xlDown
End Sub
the range A17 is where it gets insert the first time around, but after that it isert it right in the middle of other information. I knoow thats where part of the problem is. Any suggestions?
Sub
Sheets("Data").Select
Range("A17:O24").Select
Selection.Copy
Sheets("ALLL").Select
Range("A17").Select
Selection.Insert Shift:=xlDown
End Sub
the range A17 is where it gets insert the first time around, but after that it isert it right in the middle of other information. I knoow thats where part of the problem is. Any suggestions?