In Access 2000, I want to break the If...Then statement into multiple lines but can't get the sytax correct.
Eg:
If Container1 = True Or Container2 = True Or Container3 = True then
I want to write it like this:
If "Container1 = True " & _
"Or Container2 = True " & _
"Or Container3 = True" then
What is the correct syntax?
Eg:
If Container1 = True Or Container2 = True Or Container3 = True then
I want to write it like this:
If "Container1 = True " & _
"Or Container2 = True " & _
"Or Container3 = True" then
What is the correct syntax?