copy string from one row/cell to rows

milanoke

New Member
Joined
Oct 10, 2023
Messages
9
Office Version
  1. 365
Platform
  1. Windows
hi, how can I multiply/copy the value of one cell (sting) to rows bellow. e.g i have to set value of copy string in new rows. like REPT but not in same cell, need new row?
 

Attachments

  • 1Untitled.png
    1Untitled.png
    13.6 KB · Views: 6
How about
Fluff.xlsm
ABCDEFGHIJ
1
2
3number=,id=33,adress="";
4
5321610.177.252.227number=3216,id=33,adress="10.177.252.227";
6546310.177.252.228number=5463,id=33,adress="10.177.252.228";
7215610.177.252.229number=2156,id=33,adress="10.177.252.229";
8234610.177.252.230number=2346,id=33,adress="10.177.252.230";
9449910.177.252.231number=4499,id=33,adress="10.177.252.231";
10
Data
Cell Formulas
RangeFormula
J5:J9J5=LET(c,FILTER(C5:C2000,C5:C2000<>""),g,FILTER(G5:G2000,G5:G2000<>""),BYROW(CHOOSE(SEQUENCE(,7),B3,c,D3,E3,F3,g,H3),LAMBDA(br,CONCAT(br))))
Dynamic array formulas.
 
Upvote 0
Solution

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
How about
Fluff.xlsm
ABCDEFGHIJ
1
2
3number=,id=33,adress="";
4
5321610.177.252.227number=3216,id=33,adress="10.177.252.227";
6546310.177.252.228number=5463,id=33,adress="10.177.252.228";
7215610.177.252.229number=2156,id=33,adress="10.177.252.229";
8234610.177.252.230number=2346,id=33,adress="10.177.252.230";
9449910.177.252.231number=4499,id=33,adress="10.177.252.231";
10
Data
Cell Formulas
RangeFormula
J5:J9J5=LET(c,FILTER(C5:C2000,C5:C2000<>""),g,FILTER(G5:G2000,G5:G2000<>""),BYROW(CHOOSE(SEQUENCE(,7),B3,c,D3,E3,F3,g,H3),LAMBDA(br,CONCAT(br))))
Dynamic array formulas.
Fluff, it works :) thank you very much !
 
Upvote 0

Forum statistics

Threads
1,215,372
Messages
6,124,532
Members
449,169
Latest member
mm424

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