Hello,
I have a table that is imported daily and I need to validate the data and delete the tilde ~ in several fields before it is appended to another table.
I have been using the find and replace dialog box to do this but then I need to select each field individually and find and replace all. This is time consuming as there are many fields.
The only string that needs to be deleted is the tilde and it is always in a field by itself and not in a string with other characters.
I have tried using the update query but since the tilde is in many fields this didn't seem to be the way to do this.
I know that there is a replace() function but I am unsure of how and where to implement it. I am using Access 2000
Many thanks,
Jon
I have a table that is imported daily and I need to validate the data and delete the tilde ~ in several fields before it is appended to another table.
I have been using the find and replace dialog box to do this but then I need to select each field individually and find and replace all. This is time consuming as there are many fields.
The only string that needs to be deleted is the tilde and it is always in a field by itself and not in a string with other characters.
I have tried using the update query but since the tilde is in many fields this didn't seem to be the way to do this.
I know that there is a replace() function but I am unsure of how and where to implement it. I am using Access 2000
Code:
TABLE RAWINQUIRES
ID FIRST GEN DISC ADV CALL SEND DOUBT SUB
1 Mike 1 ~ ~ Y N ~ ~
2 john 1 1 RX N Y T N
3 sally 0 2 ~ ~ N T Y
4 Jenny ~ ~ BV ~ F ~ ~
Many thanks,
Jon