gojets1721
Registered User.
- Local time
- Today, 13:32
- Joined
- Jun 11, 2019
- Messages
- 430
I've got an append query that I'm trying to use to combine two telephone number fields into just one field. The code is below. For the life of me, I can't figure out why its not appending my table. It works fine as a select query. Both numbers are populated in the new expression field. But it won't append into the table. Any ideas? The new expression field is titled 'bothphones'
Code:
INSERT INTO RawList ( homephone, mobilephone, bothphones )
SELECT RawListTemp.[homephone], RawListTemp.[mobilephone], [homephone] & " " & [mobilephone] AS bothphones
FROM RawListTemp;