COPIES

The COPIES function returns n concatenated copies of string. The n must be a positive whole number or zero.

Read syntax diagramSkip visual syntax diagram COPIES( string , n )

Examples

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