The REPT function repeats a text string a specified number of times. This function is commonly used to generate repeated text patterns and formatted outputs.
REPT(value, count)
value: The text string to repeat.count: The number of times to repeat the text string.Returns a text string repeated the specified number of times.
REPT("Qtr-", 3)
Returns Qtr-Qtr-Qtr-.