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

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

Recommended Posts

  • Newbies
Posted

I basically have a yes/no field in a certain table containing child records. I have a master record that needs to know if there is a yes among any of its related records.

I need a calculation in the master table to tell me if a yes exists among the values of its child records.


|   child table     |         |   master table  |

masterid  isSomething    <--   id  hasSomething

1         yes                  1   :

1         no

1         no

1         no



Thanks for any help.

Posted (edited)

Welcome to the forums!

So in Child table create a field:

boolean: isSomething = "yes"

Then in MasterTable

Sum ( child::boolean) = true

This will give you a total of all the yes and if it's ≥ 1

You wouldn't need the added field if the isSomething field were number and then you displayed the format to be Yes/No, you could use a script to toggle the 0/1.

Edited by Guest

This topic is 5568 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.