Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Filemaker database with a Members table, an Events table, and a join table called Attendance which should list which members attended which events. Attendance has the setting "allow creation of new records" ticked for Members (doesn't need it for Events).

Data arrives in an Excel spreadsheet for importing to Attendance. But then I want to see if there are people attending who aren't in our records already... sort of like this:

  1. look at each of the newly added records in the attendance table
  2. see if the members mentioned there exist in the member table
  3. if so, do nothing
  4. else create a new record in the member table for them, using data from the attendance table.

If I'm understanding it correctly, Steps 3 and 4 should look something like this:

Set Variable [ $fname; Value: Attendance::firstname ] 
Go To Layout ["Member" (Firstname)]
New Record/Request
Set Field [Member::Firstname; $fname]

i.e. put the desired info into variables, start a new record in the related table and set the data there to the value of the variables.

But how do I get step 2 happening? I'm guessing some sort of loop will go through the found set of records in Attendance, and grab the relevant identifier. How do I show that to the Member table to see if it's present or not?

share|improve this question
Further thinking: Step 1 can be done in my case via the event id, which will be unique to the recent import. So something like Perform Find with a dialogue requesting the event id. I'll edit the question to highlight the part I'm still requiring help with. – stringy Feb 6 at 2:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.