Specifications

Char
650 InfoMaker
To pass this validation rule, the value in discount_amt must be less than or
equal to the smallest whole number that is greater than or equal to
discount_factor times price:
discount_amt <= Ceiling(discount_factor * price)
See also
Int
Round
Truncate
Char
Description Converts an integer to a Unicode character.
Syntax Char ( n )
Return value String. Returns the character whose code point value is n.
Examples This expression returns the escape character:
Char(27)
See also
Asc
CharA
Description Converts an integer to an ASCII character.
Syntax CharA ( n )
Return value String. Returns the character whose ASCII value is n.
Examples This expression returns the escape character:
CharA(27)
See also
AscA
Argument Description
n The integer you want to convert to a character
Argument Description
n The integer you want to convert to a character