A family of Microsoft relational database management systems designed for ease of use.
You could use DCount("*","tblSomething", "SerialNo=" & [SerialNo]) to get the count, where tblSomething is the name of the table and SerialNo the name of the field. This assumes that SerialNo is a number field. If it is a text field, it'd be DCount("*","tblSomething", "SerialNo=" & Chr(34) & [SerialNo] & Chr(34))
Chr(34) is the double quote character ".