Syntax:
REPT(text, number)
Repeats the text string the given number times.
Starting with 1.36, this function will accept a repeat count of zero, which returns an empty string.
Example:
REPT("yo", 2)
returns the text string "yoyo".
"yoyo"