I use this code to copy and past to the next available line moving downward. When I first wrote it I did not have anything under where this was posting but now I have had to add a section to my document.
The problem is that when this code paste the copied material it does not "push" down the new area but rather is "eating" it up. How can I modify this code so that it "pushes" down the other section?

With Sheets("Daily EIP Report")
        .Range("A8:O8").Copy .Range("A" & Rows.Count).End(xlUp).Offset(1)
    End With