VBA Copy a table and Paste it upside down

Kiriko

New Member
Joined
May 15, 2018
Messages
16
How can I write a VBA that will copy Table A and paste it as Table B (see below).

Please allow for Range Selection. Thanks for your suggestions.

Table A:

Category Total Spend
Merchandise 5,642,042.62
Corporate Services 9,054,819.94
Travel & Accommodation 11,304,167.05
Support Costs 61,560,281.01
Support Services 95,534,059.06
Business Technology 119,109,991.04
<colgroup><col width="161" style="width: 121pt; mso-width-source: userset; mso-width-alt: 5888;"> <col width="107" style="width: 80pt; mso-width-source: userset; mso-width-alt: 3913;"> <tbody> </tbody>

Table B:

Category Total Spend
Business Technology 119,109,991.04
Support Services 95,534,059.06
Support Costs 61,560,281.01
Travel & Accommodation 11,304,167.05
Corporate Services 9,054,819.94
Merchandise 5,642,042.62
<colgroup><col width="161" style="width: 121pt; mso-width-source: userset; mso-width-alt: 5888;"> <col width="107" style="width: 80pt; mso-width-source: userset; mso-width-alt: 3913;"> <tbody> </tbody>
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Hi Kiriko,

Try using the following code:

Code:
Sub CopyTable()
    With Sheet1
        .Range("[COLOR=#0000ff]A11:B17[/COLOR]").Value = .Range("[COLOR=#ff0000]A1:B7[/COLOR]").Value
        With .Sort
            .SetRange Range("[COLOR=#0000ff]A11:B17[/COLOR]")
            .Orientation = xlTopToBottom
            .Apply
        End With
    End With
End Sub

This one copies values from cells A1:B7 to A11:B17 and sorts values ("Total Spend") from largest to smallest.
 
Upvote 0
Hi Justyna, thank you for this code, however I was hoping to incorporate Set WorkRng into it somehow. See, I have to copy paste a number of tables on the same spreadsheet, and while they have only 2 columns the number of rows varies... would this be possible to do
 
Upvote 0
Hey Kiriko,

Before I adjust my code, could you please clarify a few more things for me:
a) in VBA code, would you like to set your own array of ranges, e.g. ("A1:B7", "D1:E8", "H1:I9") and loop through each range? The potential disadvantage might be that if you ever add new data to your tables, the ranges in your VBA won't change automatically and you'd need to adjust VBA code manually.
b) alternatively, you could create Named Ranges in your Excel file (one for each table) and we will loop through these Names in VBA code. The advantage is that these will expand automatically in case you change your dataset.
c) third solution is to simply loop through all tables in your Excel sheet, so you don't even need to provide any range references. However, this will include all tables, without any exceptions.

The second important part is where exactly you want to paste these tables - is it, let's say, offset 2 rows below your original table? Or perhaps all these tables should be copied to row 50?

Let me know if anything is unclear.
 
Upvote 0
Hi Justyna,

I think in this case option B is the best. And I would only need to paste a few rows below so max 3 rows below original table...
 
Upvote 0
Thank you Kiriko, it's all clear now. Please try using the following code:

Code:
Sub CopyTable()
    Dim WorkRng()           As Variant
    Dim varRng              As Variant
    Dim lngCount            As Long


[COLOR=#ff0000]    WorkRng = Array("rng_Table1", "rng_Table2", "rng_Table3")[/COLOR]


    With Sheet1
        For Each varRng In WorkRng
            lngCount = Range(varRng).Rows.Count
            .Range(varRng).Offset(lngCount + 3, 0).Value = .Range(varRng).Value
            .Range(varRng).Offset(lngCount + 3, 0).Sort _
                Key1:=Cells(lngCount + 3, Range(varRng).Column + 1), _
                Order1:=xlAscending, _
                Header:=xlYes
        Next varRng
    End With
End Sub

I am assuming that you want to paste all your tables 3 rows below the original ones and sort each one of them by the second column ("Total Spend").
I have highlighted the line which you need to modify with your selection of Named Ranges.
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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