Hi Shyam
Still having problems !!
The code I have is as follows and doesn't work (it comes
up with "Run time error '438' Object doesn't support this
property or method")
dim oGraph as Object
oPPTApp.ActivePresentation.Slides(slide_number).Select
With oPPTApp.ActivePresentation.Slides(slide_number)
For Each oPPTShape In .Shapes
If oPPTShape.Type = msoEmbeddedOLEObject Then
Set oGraph = oPPTShape.OLEFormat.Object
oGraph.SeriesCollection(1).Points(1).DataLabels.Text
= "KD"
oGraph.Application.Update
End If
Next
End With
Any ideas would be most welcome !
Thanks
KD