Re: If then statement in a query

  • Thread starter Thread starter Joe Fallon
  • Start date Start date
J

Joe Fallon

You can nest them inside of each other if you want.

IIf(condition, true, iif(condition, true, false))


That gets pretty confusing pretty quickly.
I would write a VBA function where you could "spell out" the requirements in
a cleaner way.

If condition then

else
If other condition then
else
end if
End if
 
Back
Top