How do I auto update a macro so that if I add rows on a sheet it updates the range the macro is pulling from? For example, in the following code, my info is pulling from row 9. If I add to rows somewhere above this, this information is on now on row 11. However, I now need the macro to pull from row 11. I don't want to have to do into VB and manually update every code as this would take me forever......
With Sheets("Hardware Load List").Range("C" & Rows.Count).End(xlUp).Offset(1)
.Offset(, 1).Resize(, 5).Value = Range("D9:H9").Value
.Offset(, 6).Value = Range("J11").Value
.Value = Range("B9").Value
End With
With Sheets("Hardware Load List").Range("C" & Rows.Count).End(xlUp).Offset(1)
.Offset(, 1).Resize(, 5).Value = Range("D9:H9").Value
.Offset(, 6).Value = Range("J11").Value
.Value = Range("B9").Value
End With