Function Repeat

Function Repeat

Repeats a value a specified number of times

Repeat([VALUE],[COUNT],[JOINER])

Parameters

#TypePassingDefaultNameDescription/Comments
1anyrequiredn/aVALUEThe value to repeat
2numberrequiredn/aCOUNTThe number of times to repeat
3stringoptional JOINERThe joiner to use to join the result

Returns

The value repeated


Examples

Repeat the letter "A" 10 times

{{Repeat("A",10)}}