Active JavaScript en el navegador para mostrar las páginas de ayuda de LibreOfficeDev.

CHAR

Converts a number into a character according to the current code table. The number can be a two-digit or three-digit integer number.

Los códigos mayores que 127 pueden depender de la asignación de caracteres del sistema (por ejemplo, iso-8859-1, iso-8859-2, Windows-1252, Windows-1250) y, por ello, pueden no ser portátiles.

Sintaxis

CHAR(Number)

Number is a number between 1 and 255 representing the code value for the character.

Ejemplo

=CHAR(100) returns the character d.

="abc" & CHAR(10) & "def" inserts a newline character into the string.