I found these letters are very painful !!!
http://en.wikipedia.org/wi
http://en.wikipedia.org/wi
http://en.wikipedia.org/wi
any many others !!!
my function will look like the attached code
thanks
Main Topics
Browse All TopicsHello
we have a Microsoft Access Database full of students names!
students come from diffident countries (Latin, Scandinavia, Central Europe, ....)
there names contain chars that effect some of our systems functionality!
it is all OK and we like to have them, but we need to create a cleaned copy of these names in another tables
what I need is a VBA function that converts Ü to U , Ø to O , Ñ to N , and many other Eastern and central European chars (Polish, Check, Slovenian, ...) Uppercase and Lowercase
cheers
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I found these letters are very painful !!!
http://en.wikipedia.org/wi
http://en.wikipedia.org/wi
http://en.wikipedia.org/wi
any many others !!!
my function will look like the attached code
thanks
Hello Data-Base,
Try adding this UDF to your VBA project. You can then use it like this:
SELECT StudentName, TranslateChar(StudentName)
FROM SomeTable
Please note that the function includes a dummy value for "dollar" that is there for illustration on how to
use the code to make substitutions for multiple characters, but which you will likely want to remove
before you use it :)
Regards,
Patrick
Business Accounts
Answer for Membership
by: capricorn1Posted on 2009-08-17 at 08:53:45ID: 25115673
you will need a mapping/conversion table to do this
tblConversion
ForeignChar text
EnglishChar text
sample data
ForeignChar EnglishChar
Chr(220) Chr(85) ' this is for the Ü to U
Chr(216) Chr(79) ' this is for the Ø to O
this is just the start..
brb..