It appears from your lack of response to my post that you have abandoned project or stopped.
A few things:
I noticed that your Policy_File has an ID field that is unique. So in my copy I made ID the PK for a new table I called Policy_File_JED. I then changed the record source of subform2 to
Code:
SELECT PolicyFile_JED.*
FROM PolicyFile_JED
WHERE (((PolicyFile_JED.Status) Like "*Complete*"));
This is filtering so that only records with Complete in their Status field and (by proper use of Form/subform) the Policies associated with the Loan in Main form.
Only Loan 5457122 with Policies AOR0000057, AOR0042494, AOR0051579 and AOR0064692 populate the subform. All other Loans show No Policy records in the QC form.
Good luck with your project