I have an app the utilizes two tables: Family and Individual. These 2 tables are linked using the "FamilyID" field.
Is there a way to export the Master and Details tables in the same file? Essentially this is what the end-user would like to do:
I also have another app where 1 table serves as its own Master and Details table. They each display different information and have different events but are using the same table in SQL. Would this make it easier or harder to export?
- Master table - Family
- FamilyID
- FamilyLastName
- Address
- FamilyID
- Details Table - Individual
- IndividualID
- FamilyID
- FirstName
- LastName
- PhoneNo
- IndividualID
Is there a way to export the Master and Details tables in the same file? Essentially this is what the end-user would like to do:
- In the Family table, search for "Smith"
- The results display all Families that have the last name "Smith" along with how many family members are in each Family
- Click on "Export" and Export all Families along with each Individual within each Family.
I also have another app where 1 table serves as its own Master and Details table. They each display different information and have different events but are using the same table in SQL. Would this make it easier or harder to export?