COPIES

 ───COPIES(string,n)──────

COPIES returns n concatenated copies of string. n must be a nonnegative whole number.

Here are some examples:

COPIES('abc',3)    ->    'abcabcabc'
COPIES('abc',0)    ->    ''


[Back: CONDITION]
[Next: C2D (Character to Decimal)]