D
David
Hello,
I'd like some help on the SQL Syntax or preferably, the method to use the
QBE window to do the following:
1. Use a query to select/sum data to then update data in another table.
The syntax of the SQL statement of what I have thus far is listed below.
I am trying to join on Loan Number and Quarter Ending Date.
I am trying to update Coll_Value1 with Coll_Total.
UPDATE tbl_LLMasterData_Collat_Lien SET
tbl_LLMasterData_Collat_Lien.Coll_Value1 =
[qry_LLCrossCollat_SumByLoan2]![CollTotal]
WHERE (((tbl_LLMasterData_Collat_Lien.Loan_Number) In (Select
X_Collateral_Master_LoanNumber From qry_LLCrossCollat_SumByLoan2)) AND
((tbl_LLMasterData_Collat_Lien.QuarterEndingDate) In (Select
QuarterEndingDate From qry_LLCrossCollat_SumByLoan2)));
Thanks.
I'd like some help on the SQL Syntax or preferably, the method to use the
QBE window to do the following:
1. Use a query to select/sum data to then update data in another table.
The syntax of the SQL statement of what I have thus far is listed below.
I am trying to join on Loan Number and Quarter Ending Date.
I am trying to update Coll_Value1 with Coll_Total.
UPDATE tbl_LLMasterData_Collat_Lien SET
tbl_LLMasterData_Collat_Lien.Coll_Value1 =
[qry_LLCrossCollat_SumByLoan2]![CollTotal]
WHERE (((tbl_LLMasterData_Collat_Lien.Loan_Number) In (Select
X_Collateral_Master_LoanNumber From qry_LLCrossCollat_SumByLoan2)) AND
((tbl_LLMasterData_Collat_Lien.QuarterEndingDate) In (Select
QuarterEndingDate From qry_LLCrossCollat_SumByLoan2)));
Thanks.