move data from one column to another in table

DAPPLE

Registered User.
Local time
Today, 00:17
Joined
Apr 11, 2002
Messages
73
I have a form set up through a table. On this table I had information in the wrong column. I put the bonus percent instead of bonus amount in amount column. I would like to get that copied and pasted to the percent column so it will correctly reflect on the form. Does any one know how I can do that? Please and thank you.
 
You can use an Update Query to add the data to the correct column then another Update query to delete the first column.
 
Since you don't need both columns in the table (BonusAmt is calculated by multiplying BonusPct and some other field), delete the empty BonusPct field and rename the BonusAmt to BonusPct.
 

Users who are viewing this thread

Back
Top Bottom