G
Guest
I am looking for some code that would allow be to build and execute multiple
Update queries using vba. Below is the sample of the actual update query.
The table name is ADDRESS, and field names are STREETNAME and ZIP, the Update
Query is calling on a function.
UPDATE ADDRESS SET ADDRESS.STREETNAME = RemoveSpaces([STREETNAME]),
ADDRESS.ZIP = RemoveSpaces([ZIP]);
I would also like to know the proper syntax to add multiple update queries
to the code, I will be calling on several functions to update these two
fields. Thanks in Advance!!
Update queries using vba. Below is the sample of the actual update query.
The table name is ADDRESS, and field names are STREETNAME and ZIP, the Update
Query is calling on a function.
UPDATE ADDRESS SET ADDRESS.STREETNAME = RemoveSpaces([STREETNAME]),
ADDRESS.ZIP = RemoveSpaces([ZIP]);
I would also like to know the proper syntax to add multiple update queries
to the code, I will be calling on several functions to update these two
fields. Thanks in Advance!!