looks OK to me. If you want the function to do all 4 replacements, then you have to carry the result of each replacement through as input to the next replacement, like this:
fix_characters=Replace(str,"""","")
fix_characters=replace(fix_characters,":","")
...
hth
Phil
|