ghillman89 said:
I am needing a macro to save an individual worksheet and transfer it to
a word document and save that document with the data listed in cell A1.
Any help would be greatly appreciated.
This should get you started.
Make sure you set a reference to the Word object library!
====================================================
Sub CreateNewWordDoc()
' set a reference to the Word object library
Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
Set wrdApp = CreateObject("Word.Application")
wrdApp.Visible = True
Set wrdDoc = wrdApp.Documents.Add ' create a new document
wrdDoc.Range.Text = Range("a1").Formula
wrdApp.Quit ' close the Word application
Set wrdDoc = Nothing
Set wrdApp = Nothing
End Sub
====================================================