I'm in the middle of a data conversion and I'm having a problem. My FindFirst isn't finding the first record.
My code:
coPolicy.FindFirst "CompanyName Like ' " & Left(CLNTMSTR![Name], 13) & "*'"
My Data:
The CoPolicy table has multiple records with exactly the same Company name, but my find is starting on the second record for the company being searched. I have the table order set to CompanyName.
1 ABC company
2 ABC company
3 ABC company
4 BBB Inc
5 BBB Inc
6 BBB Inc
7 BBB Inc
So if I run the findfirst like for BBB Inc I get record 5 instead of 4.
Any ideas?
My code:
coPolicy.FindFirst "CompanyName Like ' " & Left(CLNTMSTR![Name], 13) & "*'"
My Data:
The CoPolicy table has multiple records with exactly the same Company name, but my find is starting on the second record for the company being searched. I have the table order set to CompanyName.
1 ABC company
2 ABC company
3 ABC company
4 BBB Inc
5 BBB Inc
6 BBB Inc
7 BBB Inc
So if I run the findfirst like for BBB Inc I get record 5 instead of 4.
Any ideas?