>How can I filter a recordset used in a form record by record
>programatically rather than via SQL?
[quoted text clipped - 3 lines]
>impossible to convert into an SQL statement. Is there any way I can do
>this?
If you are using the (default) database engine, Jet, you can
call your function in a query's WHERE clause. e.g.
SELECT fa, fb, fc, . . . FROM table WHERE yourfunc(fx,fy,fz)
OTOH, maybe your situation will yield to a clever
combination of query operations.

Signature
Marsh
MVP [MS Access]