Char, Chr & ASCII (Calc)

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen


In cellen

=CHAR(65)

In code

[1]:

Sub ExampleChr
    ' This example inserts quotation marks (ASCII value 34) in a string.
    MsgBox "A "+ Chr$(34)+"short" + Chr$(34)+" trip."
    ' The printout appears in the dialog as: A "short" trip.
End Sub

Zie ook

Bronnen