Hello smart people,
I want to replace the specific image in the powerpoint file
Do you guys know how to replace it?
Or how to delete the image? I only know how to insert the picture.
Thank you~
Hello smart people,
I want to replace the specific image in the powerpoint file
Do you guys know how to replace it?
Or how to delete the image? I only know how to insert the picture.
Thank you~
If you have a specific id to identify the image you can use something like below.
For Each shape In ActivePresentation.Slides(1).Shapes
If shape.Type = msoLinkedPicture AND yourImageIdentifier Then
shape.Delete
End If
Next
Thank you!
Hi @irene1018b,
Install the package from here.
Thank you
Balamurugan.S
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.