Comparing to prior record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I need to compare a field in a record to another field in
the prior record. Any ideas?

Thank you for looking.

Mike
 
You need to create a place to store the content of the
prior record temporarily, so it is available to you when
you move to the next record. You can do this by adding a
new field to the underlying table. Go to the prior record
and copy the content from your field of interest. Then go
to the next record and paste into the field you just
created. Now you have the field value from the prior
record and the field value from the current record in two
different fields in a single record and you can run your
comparison.
 
Back
Top