ordendelfai
Technical User
Hi Everyone,
I cannot find a way to do this in SQL, and am very new to VBA. I have been trying to figure this out, but am almost out of time, if you can help really would appreciate
.
I have a table (say "tbl_Data) that has thousands of records, with one field ("GroupName"
that holds string data. I am trying to compare that one field to another field with SQL, but the problem is the data in tbl_Data has characters that mess up the match in the other table.
The characters are:
, (comma)
/ (forward slash)
- (dash)
. (Period)
" " (space)
# (Hash)
( (Left Parenthesis)
) (Right Parenthesis)
I need some sort of vba function that tests the data in the GroupName field for each record in this table for these characters, and removes them (loops for each record) For example:
Before:
THIS GROUP HAS THESE/CHARACTERS-NEED TO REMOVE
After:
THISGROUPHASTHESECHARACTERSNEEDTOREMOVE
Thanks!
Joel
I cannot find a way to do this in SQL, and am very new to VBA. I have been trying to figure this out, but am almost out of time, if you can help really would appreciate
I have a table (say "tbl_Data) that has thousands of records, with one field ("GroupName"
The characters are:
, (comma)
/ (forward slash)
- (dash)
. (Period)
" " (space)
# (Hash)
( (Left Parenthesis)
) (Right Parenthesis)
I need some sort of vba function that tests the data in the GroupName field for each record in this table for these characters, and removes them (loops for each record) For example:
Before:
THIS GROUP HAS THESE/CHARACTERS-NEED TO REMOVE
After:
THISGROUPHASTHESECHARACTERSNEEDTOREMOVE
Thanks!
Joel