Placing picture with code

J

Johan

Excel 2003
I have a sheet with only a graph.
With a macro I want to insert a picture on the sheet.
I want the picture to be on the upper half of the sheet and centered.
I use this macro;

ActiveChart.Pictures.Paste.Select
Selection.ShapeRange.IncrementLeft 219#
Selection.ShapeRange.IncrementTop 171.75

This works perfectly with my stationary computer. But when I run the
macro on a laptop the picture is not in the right position.
How do I solve this problem?
 
M

Master Blaster

Johan

Try to give the object a absolute position instead of a relative one:
like this-->

Sub position_of_picture()

ActiveSheet.Shapes(1).Select
Selection.ShapeRange.Left = 100
Selection.ShapeRange.Top = 50

End Sub

try to play with the 100 and 50 figures.....

Good luck
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top