If statements

  • Thread starter Thread starter TheSpaceAgency
  • Start date Start date
T

TheSpaceAgency

I'm writing an if statement but having trouble with brackets,
parentheses, and commas. Anyone know of a source document that can
help me write if statements?
 
I'm writing an if statement but having trouble with brackets,
parentheses, and commas. Anyone know of a source document that can
help me write if statements?

Since this is the formscoding group that you posted to I have to assume that you
mean an If-Then block written in VBA code. If so then those have no brackets,
parenthesis, or commas.

If Some Expression That Returns True or False Then
code lines for when expression returns True
Else
code lines for when expression returns False
End If

Can you be more specific about what you are trying to do or having problems
with?
 
Back
Top