I have a macro that copies from one form field to another in a Word 2003 document. I need to have the same information written to an Excel spreadsheet ("workcopy.xls") in cell "B5". I can't seem to be able to open Excel from within Word and place the information into the desired cell by any means I tried. Can someone give me a little guidance please.
Sub CopyField()
Dim Temp As String
Temp = ActiveDocument.FormFields("Examiner").Result
ActiveDocument.FormFields("DerivBCN2").Result = Temp
End Sub
Sub CopyField()
Dim Temp As String
Temp = ActiveDocument.FormFields("Examiner").Result
ActiveDocument.FormFields("DerivBCN2").Result = Temp
End Sub