Ok, got it all worked out just in case someone might have the same problem.
My fields are:
[InStateAndYes]=7500
[InStateAndNo]=5000
[OutStateAndYes]=9000
[OutStateAndNo]=6500
And the Yes and No field is called [D24]
Also I have a field that is a [P_Services Deployment Status]….for “In State” and “Out State”
What I was trying to accomplish is if the user selects “Yes” and “In State” it will return a value of $7,500, “Yes” and “Out State” it will return a value of $9,000, “No” and “In State” it will return a value of $5,000, “No” and “Out State” it will return a value of $6,500
The answer is:
Result: IIf([D24]=-1,IIf([P_Services Deployment Status]=2,[InStateAndYes],[OutStateAndYes]),IIf([P_Services Deployment Status]=2,[InStateAndNo],[OutStateAndNo]))
|