Is there any way to determine the contents of a field of the current record from a separate db?
Not looking for another way to solve the problem below since I'm just creating a simple example of what I'm thinking of.
example.
db1 fields
name
age
sex
response
lookup_calc
db2
response
age_restriction
sex_restriction
age_calc
sex_calc
lookup_calc
So in db2
age_calc = calculation based off the age of the entered in db1 in comparison to age_restriction in db2 returning something like a "yes" or "no"
sex_calc = calculation based off sex entered in db1 so if sex of current record in db1 = sex_restriction in db2 return something like "yes" or "no"
Then I could make a lookup where the lookup_calc match and I can bring over the matching responses from db2 to db1.
Any ideas?
Not looking for another way to solve the problem below since I'm just creating a simple example of what I'm thinking of.
example.
db1 fields
name
age
sex
response
lookup_calc
db2
response
age_restriction
sex_restriction
age_calc
sex_calc
lookup_calc
So in db2
age_calc = calculation based off the age of the entered in db1 in comparison to age_restriction in db2 returning something like a "yes" or "no"
sex_calc = calculation based off sex entered in db1 so if sex of current record in db1 = sex_restriction in db2 return something like "yes" or "no"
Then I could make a lookup where the lookup_calc match and I can bring over the matching responses from db2 to db1.
Any ideas?