
Originally Posted by
June7
What is the SourceObject for the subform container control - table, query, form, report?
If I understand the question correctly, the source object is the query:
qCustomer Balances by Reason/Year

Originally Posted by
June7
What is the code behind the combobox?
Row Source:
Code:
SELECT [tChargeback Main Table].[Master Acct] FROM [tChargeback Main Table] GROUP BY [tChargeback Main Table].[Master Acct] ORDER BY [tChargeback Main Table].[Master Acct];
After Update:
Code:
[Form]![qCustomer Balances by Reason/Year subform].Requery

Originally Posted by
June7
The / in the form name might be an issue. Also appears to be spaces. Enclose in brackets.
Form![qCustomer Balances by Reason/Year subform]
Advise no spaces or special charactures/punctuation (underscore is exception) in naming convention.
Ok, I'll try removing the "/" and spaces.
See anything else that would cause issues?