I appreciate some help
I am trying to use Dcount function with 4 criteria
I have a text box in a form to count records on table_orders The DCount function has 4 criteria:
The ID field in table_orders has to match the Form ID field
The field nature on table_orders has to be null
The field team on table_ordres has to be different than “Canceled”
The field ram (yes/no field) in table_ordes has to be “No”
I´ve been trying in many different ways with no success This is my last try:
=DCount("*","Table_orders","ID=" & [ID]& " AND IsNull(nature)=true" & " AND [team] <> "Canceled" & AND [ram] ="No")