I have used the code below to insert a pdf graphic into a spreadsheet:
Instead of positioning the graphic by "Top" and "Left" I wish to insert by reference to a cell (numerous graphics are being inserted by a loop).
How can I modify the above code to insert into a cell?
Thanks Sandy.
Code:
Worksheets("PrintQRLabels").OLEObjects.Add Filename:=ActiveWorkbook.Path & "\101.pdf", Link:=False, DisplayAsIcon:=False, Left:=140, Top:=1, Width:=150, Height:=10
How can I modify the above code to insert into a cell?
Thanks Sandy.