Hello all,
I am somewhat of an access novice. I am trying to create a calculated field in a query using the IIF function. I am looking at a column with costs in it. In the query, I want the column title to be "Sponsored?" and if the value in the field is $0.00 I want it to return "No", otherwise "Yes". The name of the column I am pulling from is Sponsor Cost
Here is what I attempted: Sponsored?: IIf([Sponsor Cost]="$0.00","No","Yes")
I keep getting #Error when I run the query. Thoughts on what I am doing wrong?