I have a form which contains a count of scanned items if, OK or ERR from my TblLog.
I have 2 displayed fields which show the numder of recorded errors using Dlookups
Me.ScansOK = DCount("[Err_OK]", "TblLog", "[Err_OK] = 'OK'")
Me.ScansERR = DCount("[Err_OK]", "TblLog", "[Err_OK] = 'ERR'")
I...