I'm trying to find duplicate names and addresses so as to find repeat customers.I am tyring to start at first record and then enetering an inner loop to compare this record to
the rest
using the field name form the table does not work with movenext because it also moves the outer loop variable thus records in the outer loop always match the inner, how can i make the value of the outer loop var remain the same until the inner loop has run??
my attempt:
strFirstName = CustTable![FirstName].Row(StatCount)
strSecondName = CustTable.Row(StatCount)! [Surname] ????
the rest
using the field name form the table does not work with movenext because it also moves the outer loop variable thus records in the outer loop always match the inner, how can i make the value of the outer loop var remain the same until the inner loop has run??
my attempt:
strFirstName = CustTable![FirstName].Row(StatCount)
strSecondName = CustTable.Row(StatCount)! [Surname] ????