Sorry, Norwood, but I'd be lucky if I was drawn and quartered if I did that. The client won't even allow a blank version of the db to leave the premesis!
I did solve that portion of the problem. I just did it with two queries:
Subform B:
SELECT DISTINCTROW PolicyTable.ClientNumber,
....
FROM PolicyTable
ORDER BY PolicyTable.PolicySeq
WITH OWNERACCESS OPTION;
Subform C:
SELECT PolicyTable.App_Received,
.......
FROM PolicyTable INNER JOIN DriverTable ON (PolicyTable.ClientNumber = DriverTable.ClientNumber) AND (PolicyTable.PolicySeq = DriverTable.PolicySeq)
WHERE (((DriverTable.ClientNumber)=[Forms]![MAIN]![Client]![CLIENTNUMBER]) AND ((DriverTable.PolicySeq)=[Forms]![MAIN]![Policy Holder]![PolicySeq]))
ORDER BY DriverTable.[Last Name], DriverTable.[First Name]
WITH OWNERACCESS OPTION;
Problem is that I'm now getting a message:
"This Recordset is not updatable"
I'm now chasing that down.