Hi amitshar131,
Here follows my suggestion.
You should change the .Copy method of the chartobject to .CopyPicture
which means you will not embed the complete worksheet but only a picture of the chart.
To control the position in the word doc you should introduce a variable for a word range, wrdRng
Replace the lines where you paste (8 and 14) by these three lines
Set wrdRng = .content
wrdRng.Collapse Direction:= 0
wrdRng.Paste
The explanation to this is that the range object (in Word) is an area of the document. When you set the range equals .content, the range refers to the whole document area. Then you run the Collapse method with direction:=0 you change the range object to represent only the end position of the content. Then finally you run the paste method on the range object. This should give the same result as manually pasting with the position of the insertion point on the last paragraph.
I would recommend inserting pagebreaks instead of a lot of paragraphs, to separate the chart pictures from each other. Please let me know if you would like me to show how to do that.
Now I leave it to you to evaluate my suggested solution and come back if you need help to make it work.
Kind regards,
Stellan