Dsum with 3 criteria

  • Thread starter Thread starter Frank Dulk
  • Start date Start date
F

Frank Dulk

How do I make Dsum with 3 criteria and is the 1st criterion numeric and are
the last 2 texts?
 
How do I make Dsum with 3 criteria and is the 1st criterion numeric and are
the last 2 texts?

DSum("fieldname", "domainname", "NumberField = " & iVal & " AND
[Textfield1] = '" & str1 & "' AND [Textfield2] = '" & str2 & "'")
 
ok.

How do I do go look for a value that this inside of a query?

John Vinson said:
How do I make Dsum with 3 criteria and is the 1st criterion numeric and are
the last 2 texts?

DSum("fieldname", "domainname", "NumberField = " & iVal & " AND
[Textfield1] = '" & str1 & "' AND [Textfield2] = '" & str2 & "'")
 
Back
Top