I\'m a novice at SQL, so hopefully someone can spell this out for me. I tried following the \"Replace Multiple Strings in SQL Query\" posting, but I got stuck.
I\'
Don't think Access supports the CASE statement. Consider using iif:
iif ( condition, value_if_true, value_if_false )
For this case you can use the REPLACE function:
SELECT REPLACE(REPLACE(REPLACE(yourfield, '#', ''), '-', ''), '/', '') as FieldName FROM ....