nesting Iff statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have this Iff statement already.
=IIf([CTA Account]=-1,"","6216407")
But this depends on two factors. IIF([Transportation amount] is
null,null,"6216407")
It has to be and/or
Thanks
Chey
 
Try

=IIf([CTA Account]=-1,"","6216407" ,IIF([Transportation amount] is
null,null,"6216407"))
 
I'm not sure if my first post is what you are looking for, mybe it's

=IIf([CTA Account]=-1 Or [Transportation amount] is
null,Null,"6216407")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

nesting IIF Statement 5
Iff statement to show pictures 4
Need help on Iff Statement 1
IFF Statement 6
Need Help with an IF statement 3
Null Criteria Problem 4
IIf statements 3
Complex Question 1

Back
Top