Using Access 2010, I would like to count all check amounts greater than $50 within a table. So far I’ve used the expression
, but this expression results in “#Error”. I believe I may have a problem with the “Domain” part of the syntax. The Objects and Controls I’m using are: tblChecks (a Table); ChkAmt ( a Field); and txtChkAmt (a Text Box). I would appreciate any assistance with my issue. Thanks in advance.
Code:
= DCount("[ChkAmt]","tblChecks","txtChkAmt > 50")
Comment