JGF Posted May 19, 2005 Posted May 19, 2005 I am import/updating records on match and I need to capture the records that do not match, so I can manually match/update them. How can I do this?
dkemme Posted May 21, 2005 Posted May 21, 2005 Create a calculation field, number, count (relationship::anyfield), where relationship is the match you are needing. This will place a 0 where no match exists or the number of matches found. The you can find for 0 to find non-matching records.
JGF Posted May 24, 2005 Author Posted May 24, 2005 The only problem is that I am updating on import, so if it does not match, where does the data go? It is the data that does not get updated that I am concerned about.
-Queue- Posted May 24, 2005 Posted May 24, 2005 If imported records do not relate to existing ones, and 'add remaining records' is not specified, then the unrelated ones stay where they are. I would suggest using IsEmpty(relationship::serial) also, which is faster than Count( ).
Recommended Posts
This topic is 7123 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now