Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

List records that do not appear in linked table


This topic is 7080 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I have two tables, the master table has records with an Id that links to a sub table via the Id. The master record can have 0-4 records in the sub table, I want to list all records from the master table that do not have any records in the sub table.

Posted

Create a calculation field in the master table of

IsEmpty(relationshipToSubTable::serial)

then search for 1 in this field.

Alternately, you can

Freeze Window

Show All Records

Go to Record/Request/Page [First]

Loop

If [isEmpty(relationshipToSubTable::serial)]

Go to Record/Request/Page [Exit after last; Next]

Else

Omit Record

End If

Exit Loop If [not Get(FoundCount)]

End Loop

This topic is 7080 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.