Say I have a simple report that is based off a query.
The report looks like this
[Name] [Result]
Stewart Sold
Steve Pending
David Sold
Shelly Sold
The [Result] Field is a dropdown list where the user can choose either "Pending" or "Sold".
I want to find out how many "Sold" are there, so I do the following:
=Count(IIF([Result]="Sold",0)) But I keep getting an error stating that its may be to complex or the syntax is wrong. Why is it hard to do a count based off a value in a drop down list?
The report looks like this
[Name] [Result]
Stewart Sold
Steve Pending
David Sold
Shelly Sold
The [Result] Field is a dropdown list where the user can choose either "Pending" or "Sold".
I want to find out how many "Sold" are there, so I do the following:
=Count(IIF([Result]="Sold",0)) But I keep getting an error stating that its may be to complex or the syntax is wrong. Why is it hard to do a count based off a value in a drop down list?