is there a rept() array formula. I need this result

jts2004

Board Regular
Joined
Apr 21, 2004
Messages
156
A1 = 4 B1 = x
A2 = 2 B2 = y
A3 = 7 B3 = z


I need C1 to look like this xxxxyyzzzzzzz


this is a simple example. my real data as 200 plus rows. I was going to use rept(B1,A1) & rept (B2,A2 etc.... but that's taking too long
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi, if you have a newer version of excel with the CONCAT() function available you can try:

=CONCAT(INDEX(REPT(B1:B3,A1:A3),0))

Otherwise you'll likely need a custom user defined function.
 
Last edited:
Upvote 0
Doubt you can do this via formulas.
VBA would do it.

There's a TEXTJOIN fuormula in Excel 2019 or Office 365 subscription but it looks like a VBA solution would be best.
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,971
Members
452,371
Latest member
Frana

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