In Excel, what formula can I use to repeat text in one cell, for a specified amount of times in consecutive rows?
Example. A2 is the number of times to repeat, B2 is the amount to be repeated and C2, D2, etc is the cells that must receive the repetition?
In Excel, what formula can I use to repeat text in one cell, for
Share
In C2 …. X2 where X is as far as you may want to go in terms of columns
[updated:I had transposed A&B]
=IF(COLUMN()-2<=$A2,$B2,"")and copy right
This works by calculating if the current column position -2 exceeds the value in B2
if you question is more complex than this then you will need to provide further detail