Linking powerpoint to Excel

  • Thread starter Thread starter j
  • Start date Start date
J

j

Hi,

I am trying to change the link in a powerpoint object
to a excel file through VBA. The excel file is just
created and not saved. The code follows:

For Each s1 In ppobj.ActivePresentation.Slides
For Each s In s1.Shapes
If s.Type = msoLinkedOLEObject Then
With s.LinkFormat
.SourceFullName = lspresdef & ".xls"
.Update
End With
End If
Next
Next

This gives an error in sourcefullname. If i give a saved
filename with full path it works fine. Can someone help me
in changing the link to an unsaved excel file??
 
I think the problem is due to your unsaved excel file. When you link to a
file, the file should exist.
Maybe have a look at www.take-off.as/datapoint
There you'll find a powerpoint addon that links powerpoint dynamically to
text files, databases and excel files.
Kurt.
 
Back
Top