Formula Help Needed

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

Guest

I have the following expression:

Expr1: IIf([SCHW ADV NETWORK]=Yes,[TOTAL FEE]*0.15)

But now I need to add that if [SCH ADV NETWORK=Yes New,[TOTAL FEE]-[SAN]

How can this be added to the expression I already have?

Any help would be greatly appreciated!
 
I have the following expression:

Expr1: IIf([SCHW ADV NETWORK]=Yes,[TOTAL FEE]*0.15)

But now I need to add that if [SCH ADV NETWORK=Yes New,[TOTAL FEE]-[SAN]

How can this be added to the expression I already have?

Any help would be greatly appreciated!

Evidently the value in [SCHW ADV NETWORK] is Text, not a Yes/No check
box field.
If so, then your first IIF should not work, as Yes is a number (value
of -1) which is not the same as "Yes" which is text.

Expr1: IIf([SCHW ADV NETWORK] = "Yes",[TOTAL FEE]*0.15,IIf([SCH ADV
NETWORK] ="Yes New",[TOTAL FEE]-[SAN],""))

What do you wish to do if the value is neither "Yes" nor "Yes New"?
The final "" above will leave the control blank.
 

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


Back
Top