I have 3 tables:
T1:Client Info- Fields: FamilyID, other fields related to client info
two other tables are linked to the Client Info table
They are all linked by FamilyID via multiple Payment_Adjustment and Charges table to every one Client Info table.
In a Query, I am trying to combine the tables to get a Client_Balance by using this formula:ClientBalance: Sum(([Charges]![FTFee]*[Charges]![FTDaysCharged])+([Charges]![PTFee]*[Charges]![PTDaysCharged])-[Payment_Adjustment]![Amount])
I don't have any data in the database yet, so I don't know if that is causing the problem, or if it is the formula, or I am just trying to do too much at once. Every time I try to run the query as a test I get the following error: The SQL statement could not be executed because it contains ambiguous outer joins.
I have spent two days trying to solve this with no luck. Thanks in advance for any advice you have.
T1:Client Info- Fields: FamilyID, other fields related to client info
two other tables are linked to the Client Info table
T2:Payment_Adjustment- Fields: FamilyID, Amount, other fields related to payments.
T3:Charges -Fields: FamilyID, FTFee, PTFee, FTDaysCharged, PTDaysCharged, other fields related to charges.They are all linked by FamilyID via multiple Payment_Adjustment and Charges table to every one Client Info table.
In a Query, I am trying to combine the tables to get a Client_Balance by using this formula:ClientBalance: Sum(([Charges]![FTFee]*[Charges]![FTDaysCharged])+([Charges]![PTFee]*[Charges]![PTDaysCharged])-[Payment_Adjustment]![Amount])
I don't have any data in the database yet, so I don't know if that is causing the problem, or if it is the formula, or I am just trying to do too much at once. Every time I try to run the query as a test I get the following error: The SQL statement could not be executed because it contains ambiguous outer joins.

I have spent two days trying to solve this with no luck. Thanks in advance for any advice you have.