VBA code to fill a table with data from another table in a unique way

kelly mort

Well-known Member
Joined
Apr 10, 2017
Messages
2,169
Office Version
  1. 2016
Platform
  1. Windows
From the image below, I want to use the data from A4:A13 to fill A17:A46. I need a VBA approach can someone please help me out?

Thanks in advance.
layout_2.jpg
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Try this:
VBA Code:
Sub Fill_Down()
'Modified 12/20/2021  3:30:42 AM  EST
Application.ScreenUpdating = False
Dim i As Long
Dim x As Long
x = 17
    For i = 4 To 13
        Cells(x, 1).Resize(3).Value = Cells(i, 1)
        x = x + 3
    Next
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution
Try this:
VBA Code:
Sub Fill_Down()
'Modified 12/20/2021  3:30:42 AM  EST
Application.ScreenUpdating = False
Dim i As Long
Dim x As Long
x = 17
    For i = 4 To 13
        Cells(x, 1).Resize(3).Value = Cells(i, 1)
        x = x + 3
    Next
Application.ScreenUpdating = True
End Sub
Thanks @My Aswer Is This

you are a legend!!!
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,265
Members
449,219
Latest member
daynle

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