Probably Simple...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Just wanting to know the criteria to update the values of one field with the
same values of another field in the same table. Ex: Where address1 field is
null, update the values from the adjacent address2 field. Thank you!
 
tbm said:
Just wanting to know the criteria to update the values of one field
with the same values of another field in the same table. Ex: Where
address1 field is null, update the values from the adjacent address2
field. Thank you!

UPDATE TableName
SET [TableName]![Field1] = [TableName]![Field2]
WHERE [TableName]![Field1] Is Null
 
Thank you Rick, that worked great

Rick Brandt said:
tbm said:
Just wanting to know the criteria to update the values of one field
with the same values of another field in the same table. Ex: Where
address1 field is null, update the values from the adjacent address2
field. Thank you!

UPDATE TableName
SET [TableName]![Field1] = [TableName]![Field2]
WHERE [TableName]![Field1] Is Null
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top