Is there a method available for copying a section out of a shape to another shape using VBA? I’m specifically trying to copy all the custom properties and user cells from one pagesheet to another page.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Unfortunately there isn’t a simple method to do this. You will have to loop over all the rows in the source sheet and create the same rows in the destination sheet. E.g.:
If you have to copy a large number of rows and performance is a consideration you should investigate using AddRows and SetFormulas.