Hello souravsain,
Here is a sample macro that copies the first paragraph of of the open Word document into "Sheet1 $A$3". You will need to make some name changes to match your code.
Sub CopyWordToExcel()
Dim wdApp As Object
Dim wdDoc As Object
'Use the Word document that is already open.
Set wdApp = GetObject(, "Word.application")
Set wdDoc = wdApp.ActiveDocument
'Copy the first paragraph
wdDoc.Paragraphs(1).Range.Copy
'Paste it into cell "A3" on "Sheet1"
Worksheets("Sheet1").Paste Destination:=Range("A3")
End Sub
Sincerely,
Leith Ross
Bookmarks