
October 20th, 2009, 07:17 AM
|
|
Registered User
|
|
Join Date: Oct 2009
Posts: 1
Time spent in forums: 16 m 39 sec
Reputation Power: 0
|
|
|
Access Programming - Exporting from Excel to ppt - paste special
I am using a tool created by my predecessor to export automated excel charts created from an access database, into powerpoint. I need to amend the code to paste special (Enhanced Metafile) so that all symbols are copied over correctly, but am unable to find any mention of format. Can anyone please help?
I have isolated the section of code exporting to ppt below:
wbk.Application.Run "basPowerPointAll", strDir, Me.cboReport.Column(4), adorst!strName, Me.cboReport.Column(5), Me.cboReport.Column(6) strErr = wbk.Sheets(1).cells(2000, 200)
If strErr <> "" Then
AppendToStatline strErr
AppendToStatline "The export produced error messages:"
End If
Set wks = Nothing
On Error GoTo binOut
wbk.Close
booWbkOpen = False
k = k + 2
|