hey,
I'm using this macro in order to copy a table and paste it to powerpoint presentation:
Moderator's note: Please take the time to review our rules. There aren't many, and they are all important. Rule #3 requires code tags. I have added them for you this time because you are a new member. --6StringJazzer![]()
Sub pic_to_pp() ' ' pic_to_pp Macro ' ' Selection.Copy ActiveSheet.Pictures.Paste.Select Application.CutCopyMode = False Selection.Cut ActiveSheet.PasteSpecial Format:="bitmap", Link:=False, DisplayAsIcon _ :=False ' Selection.Cut ' ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", Link:=False, ' DisplayAsIcon:=False Selection.ShapeRange.Width = 800 Selection.Cut End Sub
and for some reason it creates thicker lines in the middle of the table how can I solve it ?
Bookmarks