Fill formula but skip everyone 200 cells

EvonS

Board Regular
Joined
Jun 1, 2016
Messages
111
Office Version
  1. 365
Platform
  1. Windows
  2. Web
I'd like to use =TEXTJOIN(" | ", TRUE, U2:200) but I'd like it to skip every 200 cells when I fill the formula down. I want to do this because of the limitations of TEXTJOIN. I have over 12K rows to join and TEXTJOIN can't manage that much. Thanks in advance for the help.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I assume that is supposed to be U2:U200, right?

What row is the first formula going in?
 
Upvote 0
OK, place this formula in cell W1 and copy down:
Excel Formula:
=TEXTJOIN(" | ", TRUE, OFFSET($U$2:$U$200,(ROW()-1)*200,0))
 
Upvote 0
Solution
OK, place this formula in cell W1 and copy down:
Excel Formula:
=TEXTJOIN(" | ", TRUE, OFFSET($U$2:$U$200,(ROW()-1)*200,0))
You're awesome. Thanks for responding so quickly.
 
Upvote 0
You are welcome!
Glad I was able to help!
:)
 
Upvote 0
Another option that will spill down
Excel Formula:
=REDUCE(TEXTJOIN(" | ",,U2:U200),SEQUENCE(12000/200,,201,200),LAMBDA(x,y,VSTACK(x,TEXTJOIN(" | ",,CHOOSEROWS(U:U,SEQUENCE(200,,y))))))
 
Upvote 0
Another option that will spill down
Excel Formula:
=REDUCE(TEXTJOIN(" | ",,U2:U200),SEQUENCE(12000/200,,201,200),LAMBDA(x,y,VSTACK(x,TEXTJOIN(" | ",,CHOOSEROWS(U:U,SEQUENCE(200,,y))))))
Wow. Thanks
 
Upvote 0

Forum statistics

Threads
1,215,388
Messages
6,124,659
Members
449,178
Latest member
Emilou

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