Difference between revisions of "Documentation/How Tos/Calc: REPT function"
From Apache OpenOffice Wiki
		< Documentation | How Tos
		
		
OOoWikiBot (talk | contribs) m (Robot: Automated text replacement %s)  | 
				m  | 
				||
| Line 23: | Line 23: | ||
* [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]  | * [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]]  | ||
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}  | * [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}}  | ||
| − | [[Category: Documentation/Reference/Calc]]  | + | [[Category: Documentation/Reference/Calc/Text functions]]  | 
Revision as of 13:07, 17 May 2010
REPT
returns a text string comprised of copies of another text string.
Syntax:
REPT(text; number)
- returns number copies of text, joined together.
 
Example:
- REPT("ha"; 3)
 
- returns hahaha.
 
- REPT(ROUND(RAND()*10); 3)
 
- returns nnn where n is a random digit repeated three times, while:
- CONCATENATE(ROUND(RAND()*10); ROUND(RAND()*10); ROUND(RAND()*10))
 
 - returns xyz where x, y, z are three randomly independent digits.
 
- returns nnn where n is a random digit repeated three times, while: