Not too big, just wrong file extension.
I was in impression that these codepage issues are part of computing history, but no. [senroded content could be placed here, use creativity]
Frustrating issue anyway.
I really need a decent, proper solution for this cyrillic issue for the 11 INT.
Petri
Macro pasted below, I hope it get through now.
--macro--
Sub encode()
For Each cell In Selection
cell.Value = Replace(cell.Value, ChrW$(1081), "é", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1094), "ö", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1091), "ó", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1082), "ê", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1077), "å", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1085), "í", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1075), "ã", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1096), "ø", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1097), "ù", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1079), "ç", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1093), "õ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1098), "ú", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1092), "ô", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1099), "û", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1074), "â", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1072), "à", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1087), "ï", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1088), "ð", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1086), "î", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1083), "ë", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1076), "ä", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1078), "æ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1101), "ý", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1103), "ÿ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1095), "÷", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1089), "ñ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1084), "ì", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1080), "è", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1090), "ò", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1100), "ü", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1073), "á", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1102), "þ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1049), "É", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1062), "Ö", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1059), "Ó", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1050), "Ê", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1045), "Å", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1053), "Í", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1043), "Ã", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1064), "Ø", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1065), "Ù", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1047), "Ç", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1061), "Õ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1066), "Ú", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1060), "Ô", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1067), "Û", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1042), "Â", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1040), "À", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1055), "Ï", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1056), "Ð", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1054), "Î", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1051), "Ë", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1044), "Ä", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1046), "Æ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1069), "Ý", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1071), "ß", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1063), "×", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1057), "Ñ", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1052), "Ì", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1048), "È", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1058), "Ò", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1068), "Ü", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1041), "Á", vbTextCompare)
cell.Value = Replace(cell.Value, ChrW$(1070), "Þ", vbTextCompare)
Next cell
End Sub
--macro ends--