COPIES The COPIES function returns n concatenated copies of string. The n must be a positive whole number or zero. COPIES( string , n ) Examples COPIES('abc',3) -> 'abcabcabc' COPIES('abc',0) -> ''