PDA

Click to See Complete Forum and Search --> : FindLast Method for ADO


Paul D
Jun 15th, 2000, 06:48 PM
In DAO when finding data it is possible to use the .FindLast method to find the last matching record.

Does anyone know a simple way to code this using
.Find in ADO ?

Ianpbaker
Jun 15th, 2000, 08:13 PM
Hi Paul

All you need to do is

recordset.FindLast "Fieldname = 'ABC'"

and it will search fom the last record backwards.

The Field just has to be in the recordset your searching

Hope this helps

Ian