String - LPad
Syntax: =LPad(Text , Length , FillWith )
Description: Returns a string Text that
is left padded with the FillWith character to the length given.
Example: Add as many spaces to the word
hello until the string is 10 characters long: =LPad("hello", 10, "
")
|