Forum Discussion
J-Des000
Dec 23, 2024Brass Contributor
Repeating Numbers
Hi, Trying to repeat the same number (from an array) an X number of times. How do I go about this? I've seen some examples using the OFFSET function, but trying to do this by avoiding volatile fu...
SergeiBaklan
Dec 23, 2024Diamond Contributor
As variant
=DROP( REDUCE(0, numbers, LAMBDA( a ,v, VSTACK(a, SEQUENCE(v,,v,0) ) ) ), 1)