RADJ(Expr,Width,c=' ')
Returns a string of Width characters, left padding the value returned by Expr with appropriate number of c characters.
E.g. RADJ('CalcIt',10,'a') returns aaaaCalcIt.
RADJ('CalcIt',10,'a')
aaaaCalcIt
The last parameter is optional and if omitted the space character is assumed.
Go Back