VBA to Copy Values into New Column with Consecutive Rows

mpalesano23

New Member
Joined
Mar 6, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I have Data in Column D9:D21, if the value of the cell in B9:B21 equals 1, I would like the corresponding cell text in D9:D21 to be copied into Column H, starting in H9 and continuing in consecutive rows below.

Thank you!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Welcome to the Board!

If you are indeed using Excel 365, this can be done very easily with no VBA required using the new FILTER function.
Just put this formula in cell H9:
Excel Formula:
=FILTER(D9:D21,B9:B21=1)
and Excel will do the rest!
 
Upvote 0
Solution
Welcome to the Board!

If you are indeed using Excel 365, this can be done very easily with no VBA required using the new FILTER function.
Just put this formula in cell H9:
Excel Formula:
=FILTER(D9:D21,B9:B21=1)
and Excel will do the rest!
Awesome, was not aware of this function. Works perfect, that's super simple!
 
Upvote 0

Forum statistics

Threads
1,216,058
Messages
6,128,538
Members
449,456
Latest member
SammMcCandless

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