djeverett01
Programmer
I am trying to do a report and I have a chk box names Negotiable and then I have the Minimum Salary for a job. If the chk box is checked and the minimum Salary is 0 then I want the report to say Negotiable otherwise I want the Salary to show up. I am currently using this code
=IIf(([Negotiable]<>0 And [Minimum Salary]=0),"NEGOTIABLE",[Minimum Salary])
and everytime I run the report I get the message #Error. Am I not doing this right? Please help.
=IIf(([Negotiable]<>0 And [Minimum Salary]=0),"NEGOTIABLE",[Minimum Salary])
and everytime I run the report I get the message #Error. Am I not doing this right? Please help.