Table named PARENTS. Principal fields for new records are
- role (mother or father)
- name
- address
- spouse (a link to another record in the same table)
In the demographic whose data will populate this table, spouses are more than 90% likely to share the same address. But 90% < 100%. So I want the spouse record to store the address independently. At the same time, however, I’d like to eliminate superfluous typing.
I can get two-thirds of what I want by creating the mother and father records separately. Say the first parent is a mother. If I save and exit that record, then create the father record de novo, enter the role (“father”), name etc and from the perspective of this second record link to the first, I can copy the address via an automation. But I can only get this to work from the perspective of the second record.
What I’d really like to do — what would give me three-thirds of what I want — is be to create the first record “from scratch”, enter role, name and address, and then when I get to the “Spouse” (linked record) field, to create the spouse record right there — from inside the detail view of the first record — and copy mother’s address to the new father record.
Is this possible? I’ve been banging my head on this problem and haven’t sorted it out, although it feels very much like it ought to be doable.
Please note that I would rather like to do this WITHOUT Javascript.