Connecting Tech Pros Worldwide Forums | Help | Site Map

Transfer values from one field to another field within the SAME table

zufie
Guest
 
Posts: n/a
#1: Jul 8 '08
How would I transfer the values from my WorkPhone field to my
CellPhone field within the same table IBCCP Referral?

Thanks!,

John


fredg
Guest
 
Posts: n/a
#2: Jul 8 '08

re: Transfer values from one field to another field within the SAME table


On Tue, 8 Jul 2008 07:14:50 -0700 (PDT), zufie wrote:
Quote:
How would I transfer the values from my WorkPhone field to my
CellPhone field within the same table IBCCP Referral?
>
Thanks!,
>
John
Run an update query.

Update [IBCCP Referral] Set [IBCCP Referral].[CellPhone] = [IBCCP
Referral].[WorkPhone];
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Chris O'C via AccessMonster.com
Guest
 
Posts: n/a
#3: Jul 8 '08

re: Transfer values from one field to another field within the SAME table


Back up your table first so if you make a mistake, you can try again. Run
this query:

UPDATE [IBCCP Referral]
SET CellPhone = WorkPhone;

Chris
Microsoft MVP


zufie wrote:
Quote:
>How would I transfer the values from my WorkPhone field to my
>CellPhone field within the same table IBCCP Referral?
>
>Thanks!,
>
>John
--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...ccess/200807/1

Closed Thread