Returns a text value composed of the input text repeated a specified number of times.
function (optional
text
as nullable any,count
as number) as nullable any
Returns a text value composed of the input text text
repeated count
times.
Text.Transformations
Repeat the text "a" five times.
Text.Repeat("a", 5)
"aaaaa"
Repeat the text "helloworld" three times.
Text.Repeat("helloworld.", 3)
"helloworld.helloworld.helloworld."