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 6583 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Any help greatly appreciated.

Two tables: data and results. Trying to create a relationship where [data]name=[results]name and [data]date=[results]empty where empty is a date field with nothing entered. I'm thinking that find related records will show me all of the records in data where there is no date entered, but no. I've got to be missing something really simple, its driving me nuts.

Posted

Relate them via a stored calc field

data_calc = If( IsEmpty( data ) ; 1 ; data )

results_calc = If ( IsEmpty( results ) ; 1 ; results )

Relate those two fields instead, again make sure they are stored.

Posted

Many thanks for your reponse, but still no go. All fields in the relationship are indexed. I've checked and rechecked the entries...works if only one of the fields is related, but not if both (this AND that)

This one has me stumped.

Posted

My bad...works now. Didn't have proper values in 'Date is Empty' calculation. Just out of curiosity, why doesn't FM recognize empty and empty? Why the need for a calculation?

I'm not as much of a rookie as this sounds...been working with FM for 15 years now..client of one - me. So am by no means a pro...

Posted

LOTS of valid reasons trust me.

Plus in database design it's not standard to try to relate empty fields and all db programs in this way are similar ( i.e. NULL will never equal NULL ).

It's like saying... "no apples" is equal to "no oranges" or "no money" is equal to "no stocks".

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