La fonction IsEmpty est employée pour renvoyer une valeur de type booléen (1 ou 0) indiquant si une variable a été initialisée.
La fonction IsEmpty
La fonction VBA IsEmpty suit la syntaxe suivante :
IsEmpty(variable)
Exemple de macro avec IsEmpty
La macro
Sub macro()
Dim a, Verif
Verif = IsEmpty(a) ' Renvoie VRAI
Msgbox(Verif)
End Sub