G'morning all -- First time poster here, so please forgive me....

I have a secondary routine in Excel that generates a table by manipulating data. It then copys the table via selected text and pastes it into a given row in a table in a word document.

A primary routine provides input to the secondary routine and is looped through 400 times for varying different pieces of data to generate 400 embedded tables in the word document.

Both routines work fine for awhile for an undetermined number of loops. At different points, the routine breaks with the following error:

Run-Time error 4605:
This method or property is not available because the clipboard is empty or not valid.

If I interupt the routine and re-start it from the loop point where it broke it will run again for awhile before breaking at a differnt point with the same error.

A portion of the code where the error occurs is below.

Sheets("NFA Summary").Select

Range("A5:N" & yy + 6).Select
Selection.Copy

wrdDoc.Tables(1).Cell(Row:=ii, Column:=2).Range.Select
wrdApp.Selection.PasteExcelTable False, False, False

Any help with this would be so greatly appreciated. I have been through a lot of the forums and only found similar problems, but no resolutions. Thanks in advance!