Se estiver executando do Excel e automatizando o Word, a propriedade Selection
será interpretada como um objeto do Excel. Apenas qualifique Selection
com a referência document.ActiveWindow:
If iCounter > 1 Then
oDoc.Bookmarks("Entregables").Range.Select
oDoc.ActiveWindow.Selection.MoveDown unit:=wdParagraph, Count:=1 'Here is where I get the error
oDoc.ActiveWindow.Selection.InsertAfter vbCrLf + vbCrLf + vbCrLf + vbCrLf
End If