Access Chr Function

Last updated: August 26, 2026.

The Chr function returns the character associated with a numeric character code.

Syntax

Chr(charcode)
ArgumentDescription
charcodeNumeric character code

Examples

Chr(65)             ' A
Chr(13) & Chr(10)   ' Windows line break
TabText: "A" & Chr(9) & "B"

Chr uses the current code page for values from 0 through 255. Use ChrW when a Unicode code unit is required.

See Microsoft’s Access function reference for related expression functions.

admin

admin

Leave a Reply

Your email address will not be published.