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

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
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,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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