Transliteration from Latin to Cyrillic letters in Excel

K

kecman

I am trying to convert text from Serbian latin to Serbian cyrillic.
The text is in column A of a worksheet in Excel. I therefore recorded
a macro using the search and replace function. The manual search and
replace works perfectly (but is a big hassle), but the macro does not
record properly.

For example, I want the letter "d" to be replaced by "Ä". In the macro
editor, the following is recorded:

Selection.Replace What:="d", Replacement:="_", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=True

The problem is that I cannot input cyrillic letters in the macro. I.e.
the problem is in:

Replacement:="_"

which should read

Replacement:="Ä"

Is there a way to work around this problem? Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top