G
Guest
I've looked through the knowledge base and I have not found something
specific to building an update query. I'm building an update query to update
between fields in the same table. Unfortunately, the text command I used is
not working.
How do I enter this command in the Update to field: Right$("00000" &
OldZipField,5) using the following fields: postal_code and zip
This was part of my greater question of fix postal codes, which I received
the below solution:
When you imported, Access must have set the field to numeric.
Add a new Zipcode field to your table, and make it Text.
Use an update query to update the new field to Right$("00000" & OldZipField,
5)
Once you've checked that the new field is correct, you can delete the old
field.
specific to building an update query. I'm building an update query to update
between fields in the same table. Unfortunately, the text command I used is
not working.
How do I enter this command in the Update to field: Right$("00000" &
OldZipField,5) using the following fields: postal_code and zip
This was part of my greater question of fix postal codes, which I received
the below solution:
When you imported, Access must have set the field to numeric.
Add a new Zipcode field to your table, and make it Text.
Use an update query to update the new field to Right$("00000" & OldZipField,
5)
Once you've checked that the new field is correct, you can delete the old
field.