I have a table called Data. This table has fields labelled Client, ChargeCode, PeriodYear adn PeriodMonth.
In another table called AdjChargeCodes the following fields exist: ClientCode, FromChargeCode, ToChargeCode, PeriodYear and PeriodMonth.
I need to run a procedure that will open the Data table recordset and for each record in the AdjChargeCodes table, find the corresponding record in the Data table based on ClientCode, FromChargeCode, PeriodYear and PeriodMonth and change the ChargeCode to the value in ToChargeCode.
What is the best way to accomplish this? I am thinking just a one to many relationship update query?
In another table called AdjChargeCodes the following fields exist: ClientCode, FromChargeCode, ToChargeCode, PeriodYear and PeriodMonth.
I need to run a procedure that will open the Data table recordset and for each record in the AdjChargeCodes table, find the corresponding record in the Data table based on ClientCode, FromChargeCode, PeriodYear and PeriodMonth and change the ChargeCode to the value in ToChargeCode.
What is the best way to accomplish this? I am thinking just a one to many relationship update query?