ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   copy photo (https://www.excelbanter.com/excel-programming/322773-copy-photo.html)

Alvin Hansen[_2_]

copy photo
 
Hi

Is there a way to make a macro there copy all photo from one sheet to
another sheet if i don't know how many photos there are

Regards alvin


Dave Peterson[_5_]

copy photo
 
Something like:

Option Explicit
Sub testme()
Dim FWks As Worksheet
Dim TWks As Worksheet
Dim myPict As Picture

Set FWks = Worksheets("sheet1")
Set TWks = Worksheets("sheet2")

For Each myPict In FWks.Pictures
myPict.Copy
TWks.Range(myPict.TopLeftCell.Address(0, 0)).PasteSpecial _
Paste:=xlPasteAll
Next myPict

End Sub

Alvin Hansen wrote:

Hi

Is there a way to make a macro there copy all photo from one sheet to
another sheet if i don't know how many photos there are

Regards alvin


--

Dave Peterson


All times are GMT +1. The time now is 08:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com