Hi,
I have macro in power point presentation which opens excel workbook, hides some rows and copies table fragment. Then it's pasted on the slide in my presentation. And it works. I paste it this way: mySlide.Shapes.Paste (where mySlide is my PowerPoint.Slide object) not PasteSpecial. I get table, not picture and this is what I need.

I have a problem with setting a position of my shape, especially with .top parameter, e.g. when I set .top = 0 my table isn't on the same top of the slide. I have to set number less then 0, but it doesn't give always the same result, e.g. I want to set my table under title and write .top = -65, but when I paste different fragment of table (copied from the same workbook) and set the same parameter -65, it's often higher/lower than the first table. Why? I need to have two tables on the same slide and it's difficult to set them if sizes can change, it's impossible to calculate top number for the second to set it under the first one.
Does anyone know what the differences are caused and how to deal with it?
I tried to work with new empty slide and it's the same situation.