Converts its parameters from integers to corresponding ASCII characters and returns the string composed of these characters.
| Syntax: | 
|---|
| value = ASCIIToCharacters( expression ) OR value = Chr( expression ) ' Short form usage: "Chr" | 
| Parameter: | Description: | 
|---|---|
| expression | Any ASCII character value, or a list of comma separated ASCII values | 
| value | String which corresponds with the numeric ASCII codes. | 
This is the Standard ASCII table for converting text to an ASCII value, and for using the Chr() function to convert the ASCII number to a text character.
| Example: | 
|---|
| value = ASCIIToCharacters( 65 )  '  Returns "A" 
 Results:See example comments. | 
| Links: | 
|---|
| See Also: | 
| Edit Time: 9/18/2020 1:32:03 PM | Topic ID#: 40 |