Hi,
I have two workbooks.
I am looking to copy an Image from the closed book (Image Source) and paste it into the open book (Source Portfolio.xlsm).
The Images are signatures and have been named to correspond with the staff names stored in ComboBox1
ie. J Bloggs would have a signature image named J Bloggs.
Coming up with error '438 - Object does not support this property or method.'
any help would be greatly appreciated.
Thanks
Mark
Office 365 - Windows 10
I have two workbooks.
I am looking to copy an Image from the closed book (Image Source) and paste it into the open book (Source Portfolio.xlsm).
The Images are signatures and have been named to correspond with the staff names stored in ComboBox1
ie. J Bloggs would have a signature image named J Bloggs.
Coming up with error '438 - Object does not support this property or method.'
any help would be greatly appreciated.
Thanks
Mark
Office 365 - Windows 10
Rich (BB code):
Workbooks.Open Filename:="C:\Users\\Documents\Image Source .xlsx"
ActiveSheet.Shapes.ComboBox1.Value.Select
Selection.Copy
ActiveWindow.Close
Range("P8").Select
Windows("QPEO2 Source Portfolio .xlsm").Activate
ActiveSheet.Pictures.Paste Range("P8")