VBA: compose a set of copy/paste special instructions

Matt_314

New Member
Joined
Apr 6, 2020
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hello all,

this is my first attempt at VBA, I have some basic experience with Matlab and little programming experience, so please bear with me if I fail to use the proper terms.
I want to automate a series of operations on several sheets in the same workbook.

Can you tell me what my code should look like, or give me a hint on where to start?

The ...operations? commands?, which need to be executed are the following, in this order. I'm describing the operations I do by hand:

*start*
  1. Set the values in Sheet 1:
    1. Cell A1=100
    2. Cell A2=0
  2. In Sheet 2, copy the cells in the range A1:C10
  3. In Sheet 2, paste special the values+number format and skip blanks to D1

    *end of first iteration*

  4. Set the values in Sheet 1:
    1. Cell A1=0
    2. Cell A2=100
  5. Repeat 2.
  6. In Sheet 2, paste special the values+number format and skip blanks in D2

    *end of second iteration*

  7. Set the values in Sheet 1:
    1. Cell A1=0
    2. Cell A2=0
  8. Repeat 2.
  9. In Sheet 2, paste special the values+number format and skip blanks in D3

    *end of third iteration*

  10. In Sheet 2, copy the cells in the range D1:F10
  11. In Sheet 3, paste special the values+number format and skip blanks in A1
*end*

I hope this is clear enough for someone to tell me if this is possible and what educational material I should be studying to learn to write this.


Cheers and many thanks,
Matt
 
Hey awesome, you found your solution!

For your adjustment to the code I suggested, this is only part I'd change, just on a style/preference basis, though I don't think there's any beneficial gain:
VBA Code:
    'Final output
    With Sheets("RESULTS")
        .Range("O7:V64").Copy
        Sheets("Diagrams").Range("C5:J62").PasteSpecial xlPasteValuesAndNumberFormats, skipblanks:=True
        .Range("D2").Copy
        Sheets("Diagrams").Range("B1").PasteSpecial xlPasteValuesAndNumberFormats
    End With
 
Upvote 0

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December

Forum statistics

Threads
1,214,791
Messages
6,121,611
Members
449,038
Latest member
apwr

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top