<!---- Google Sheet : REPT --------------------------------------------->
Returns specified text repeated a number of times. Repeat "A" 4 times:
=REPT( "A", 4 )
Result: AAAA
Using the value from another cell:
=REPT( "A", B2 )
<!--------------------------------------------- Google Sheet : REPT ---->