Try this...
Sub test()
Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
ChDrive "C"
ChDir "C:\MyFolder"
With ThisWorkbook.Sheets("MyChart")
If .HasPivotFields = True Then .HasPivotFields = False
..Export "mychart.gif", "GIF"
End With
Set wrdApp = CreateObject("Word.Application")
wrdApp.Visible = True
Set wrdDoc = wrdApp.Documents.Add
wrdDoc.PageSetup.Orientation = wdOrientLandscape
wrdDoc.Shapes.AddPicture Filename:="C:\MyFolder\mychart.gif"
Set wrdDoc = Nothing
Set wrdApp = Nothing
End Sub
--
XL2003
Regards
William
(e-mail address removed)
"make a VBA to export pivot chart to word"