nesting Iff statement

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
 
G

Guest

Try

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

Guest

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


Top