Reggie2004
Technical User
Is there a such thing as an If then statement in Access? If so what is the format/
Reg
Reg
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If <Condition> Then
' Do something when <Condition> is TRUE
Else
' Do something else when <Condition> is FALSE
End If
IIF ( <Condition>, True Part, False Part )