Sub Operateurs()
' Opérateurs arithmétiques
Dim a As Integer, b As Integer
a = 10
b = 3
Dim somme As Integer
somme = a + b ' 13
Dim difference As Integer
difference = a - b ' 7
Dim produit As Integer
produit = a * b ' 30
Dim quotient As Double
quotient = a / b ' 3.333...
Dim modulo As Integer
modulo = a Mod b ' 1
Dim puissance As Double
puissance = a ^ b ' 1000 (10^3)
' Opérateurs d'affectation
Dim x As Integer
x = 5
x = x + 3 ' x += 3 n'existe pas en VBA
x = x - 2 ' x -= 2 n'existe pas en VBA
' Opérateurs de comparaison
Dim estEgal As Boolean
estEgal = (a = b) ' False
Dim estPlusGrand As Boolean
estPlusGrand = (a > b) ' True
' Opérateurs logiques
Dim et As Boolean
et = (a > 5 And b < 5) ' True (les deux conditions sont vraies)
Dim ou As Boolean
ou = (a > 20 Or b < 5) ' True (au moins une condition est vraie)
Dim non As Boolean
non = Not (a > b) ' False (inverse de True)
End Sub