TOP

Fonction VBA : Asc

YouLibreCalc for Excel logo

Description

La fonction VBA ASC renvoie un entier correspondant au caractère passé en argument.


Syntaxe ASC

Asc(caractère)

Exemple VBA Asc

Afficher l'entier correspondant au caractère "a" :

Sub AscExample()

   MsgBox Asc("a") 'Retours: 97
  
End Sub

Liste de valeurs

Voici les valeurs renvoyées par la fonction ASC pour le jeu de caractères le plus courant :

Argument Résultat Argument Résultat Argument Résultat Argument Résultat
! 33 9 57 Q 81 i 105
" 34 : 58 R 82 j 106
# 35 ; 59 S 83 k 106
$ 36 < 60 T 84 l 108
% 37 = 61 U 85 m 109
& 38 > 62 V 86 n 110
' 39 ? 63 W 87 o 111
( 40 @ 64 X 88 p 112
) 41 A 65 Y 89 q 113
* 42 B 66 Z 90 r 114
+ 43 C 67 [ 91 s 115
, 44 D 68 / 92 t 116
- 45 E 69 ] 93 u 117
. 46 F 70 ^ 94 v 118
/ 47 G 71 _ 95 w 119
0 48 H 72 ` 96 x 120
1 49 I 73 a 97 y 121
2 50 J 74 b 98 z 122
3 51 K 75 c 99 { 123
4 52 L 76 d 100 | 124
5 53 M 77 e 101 } 125
6 54 N 78 f 102 ~ 126
7 55 O 79 g 103
8 56 P 80 h 104
La fonction de retour qui renvoie un caractère en fonction de son numéro est CHR.