View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Iker Iker is offline
external usenet poster
 
Posts: 1
Default moving excel objects pasted as an image in Powerpoint

I have copied some parts of an excel table and paste them
in powerpoint as an image. This is the code:
******************
Range("C10").Select
Selection.CopyPicture Appearance:=xlScreen, _
Format:=xlPicture
PPSlide.Shapes.Paste
(where PPSlide is the selected slide in the Powerpoint
presentation)
*****************
Now, my question is:
How can I move the pasted object to the right position in
the Powerpoint Slide?
I am running the macro from Excel. Office200.

Thanks!