My programming instructor told me to use this for counting records in a report with multiple conditions;
=Select count (select *
from
where [req]=Yes
and [comp]=0
and ((Now()-[arrivaldate])/30.4)>=0
and ((Now()-[arrivaldate])/30.4)<=4
and [status]="UNQAL")
But when I enter it, I get this error.
"the syntax of the subquery in this expression is incorrect" "Check the subquery's syntax and enclose the subquery in parentheses"
Anyone help?
I am actually doing this database for work, my instructor is teaching me C# which has nothing to do with this database.
=Select count (select *
from
But when I enter it, I get this error.
"the syntax of the subquery in this expression is incorrect" "Check the subquery's syntax and enclose the subquery in parentheses"
Anyone help?
I am actually doing this database for work, my instructor is teaching me C# which has nothing to do with this database.
Last edited: