Realizing that xlVeryHidden Sheets are difficult, if not impossible to access,I have a problem. I can copy a range from Excel to Word with the Xl sheet visible but not when very hidden. However, I can see and manually paste the copied data from the clipboard to word. Is there a way to do this without using the Selection.paste command as this seems not to work? Also how would I copy a dynamic range. One with a varying number of rows. Using IsEmpty I think, but am not sure?
With Sheet3.Range("Q1:U20"
.Copy
End With
WordDoc.Selection.Goto What:=wdGoToBookmark, Name:="QTABLE"
With WordApp.Selection
.TypeParagraph
.Paste
End With
With Sheet3.Range("Q1:U20"

End With
WordDoc.Selection.Goto What:=wdGoToBookmark, Name:="QTABLE"
With WordApp.Selection
.TypeParagraph
.Paste
End With