I would like to enable users to do a find on a combo box where the bound
column is a auto number field. Typing in the alpha expression in the find
window does not return the desired record.
Any ideas?
I'd suggest using a Query referencing a form.
Create an UNBOUND form named frmCrit (or your own choice of name of
course). Put a combo box on it, cboFindThis. Its bound column should
be the numeric ID; the first (or only) nonzero width column should be
the alpha expression.
Use
=[Forms]![frmCrit]![cboFindThis]
as a criterion in your query. Base a Form (for display) or Report (for
printing) on the query.
If you're using a Lookup field in a table datasheet, and searching in
this datasheet, you've encountered one of the many reasons that lots
of us dislike Lookup fields.
John W. Vinson[MVP]