Newbies watergeek Posted September 10, 2002 Newbies Posted September 10, 2002 I have a need to filter a (40,000 records)mailing list down to all records that are within a certain distance. The distance of course will change depending upon the mailing. I found a program that will provide a list of all the zip codes within whatever distance I give it. The list can then be exported in a tab delimited list. How do I make a relationship that will use this list of zip codes to filter out my list. The zip codes may be within a large number of different ranges, so just doing a find that way is too difficult.
falkaholic Posted September 10, 2002 Posted September 10, 2002 You'll have the make a database to match the exported distances. Then import into it every time there is a mail out. Then in that database, make a calculation fields that is something like this: if ( DistanceField < WantedDistanceFieldGlobal, "Yes", "No") That will have a field with "yes" in it if its within your range. Then in your master database, make another calculation fields that is just: "Yes" Then make a related between those 2 calc fields and you have the relation you need.
Newbies watergeek Posted September 10, 2002 Author Newbies Posted September 10, 2002 Thank you for your reply, however, I am not going to have the distances, only the zip codes. My imported list of zip codes (from the other program) will be in one file, and my mailing list has the zip codes in another file. My need is not to match with distances but with the zip codes themselves.
falkaholic Posted September 11, 2002 Posted September 11, 2002 OK OK OK .... backup. So what inf do you have? What do you want to get out of that data?
Recommended Posts
This topic is 8165 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