How do we insert a picture in a specific location in excel and adjust it's size?
This inserts the picture. Need assistance with scaling.
Thanks!
This inserts the picture. Need assistance with scaling.
Code:
oExcel = CreateObject("Excel.Application")
oWorkbook = oExcel.Workbooks.Add()
oSheet1 = oWorkbook.Worksheets(1)
oPictures = oSheet1.Pictures
oPictures.Insert("logo.png").Select
Thanks!