I'm using input tables with special chars, but my output tables need to be without them. So i need function that would replace special chars in query or table for example
Š=S Č=C Ć=C Ž=Z
Any sugestions?
I'm using input tables with special chars, but my output tables need to be without them. So i need function that would replace special chars in query or table for example
Š=S Č=C Ć=C Ž=Z
Any sugestions?
You could pop them into a string, and then use Replace, e.g. strYourString = Replace(strYourString, "Š","S")
.
Downside of this approach is you'd need to specify all the special characters you want to replace, and run the code several times, perhaps as a loop.
Replace function does that but (as far as I know) for single character: Expr1: Replace([Employees].[Prezime];"č";"c") For a fast but not efficiant solution you can create several fileds named Expr1, Expr2 Expr3, and in each remove one special character. But I am searching for more "decent" solution.