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.

Els codis més grans que 127 poden dependre del mapatge de caràcters del vostre sistema (per exemple, iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), i per tant és possible que no siguen portàtils.

Sintaxi

CHAR(Number)

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

Exemple

=CHAR(100) returns the character d.

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

Ens cal la vostra ajuda!