Jul 14 2022 08:26 PM
As the title suggests I need to expand a list of values but not in its current order again, instead adding the same value after it. Doesn't feel that complicated but I don't know how to do it for a large amount of data which would save me a lot of time. Sorry if the wording is confusing, don't know how to explain it well. Please see my example below.
Example expand row A by 3 times.
Row A |
23 |
53 |
142 |
352 |
43 |
Into this:
Row A |
23 |
23 |
23 |
53 |
53 |
53 |
142 |
142 |
142 |
352 |
352 |
352 |
43 |
43 |
43 |
Thanks for your help.
Jul 15 2022 03:47 PM
Jul 15 2022 04:11 PM
SolutionJul 15 2022 05:14 PM
If you're on 365 and Insider, you might use this:
=LET(r,ROWS(list)*3,CHOOSEROWS(list,INT(SEQUENCE(r,,1,1/3))))
Jul 15 2022 06:11 PM
Jul 21 2022 08:30 AM
Jul 15 2022 04:11 PM
Solution