MS Access VBA में If ...else.....End If का उपयोग किसी Condition को check करने के लिए किया जाता है. इसका उपयोग निम्नलिखित तरीके से कर सकते हैं.




Syntax in MS Access is:

If <condition_1> Then
   Statment_1
Else
   Statment_2
End If



Exp:- 

Dim a As Integer
If (a = 0) Then
 MsgBox ("The value of a is 0!")
Else
 MsgBox ("The value of a is other than 0! ")
End If