Was this helpful?
Space (number)
This built-in function returns a string consisting of a specified number of spaces. Space returns a String. The argument number specifies the number of spaces you want in the string. It can be any number between 0 and approximately 65,000, inclusive.
Example
subTotal = 345.00
Total = "Daily Total-" + Space(1) + subTotal; # Total is assigned: Daily Total- 345.00
Last modified date: 02/09/2024