I have a table as such:
Name Acct# Value Change?
James 1211 0 A
James 1211 1 Y
Kelly 1311 B
Kelly 1311 1 Y
Nikki 1411 1 C
Nikki 1411 0 Y
Y represents the original value for the account numbers. A, B, or C represents the changes recommended, wherever necessary. How do I make a query to go through my table and replace the Y (original) values with the A/B/C (recommended) values in the same table, just a row beneath? If there is no recommended change (as in Kelly's case), I would want the query to ignore that account number.
Thanks in advance.
Name Acct# Value Change?
James 1211 0 A
James 1211 1 Y
Kelly 1311 B
Kelly 1311 1 Y
Nikki 1411 1 C
Nikki 1411 0 Y
Y represents the original value for the account numbers. A, B, or C represents the changes recommended, wherever necessary. How do I make a query to go through my table and replace the Y (original) values with the A/B/C (recommended) values in the same table, just a row beneath? If there is no recommended change (as in Kelly's case), I would want the query to ignore that account number.
Thanks in advance.