I can add an English Autocorrect entry using VBA in Excel
Application.AutoCorrect.AddReplacement What:="helo", Replacement:="hello"
However if the replacement word is Hebrew then it doesn't work (nothing is added)
aHebrewWord = Range("C1").Value
Application.AutoCorrect.AddReplacement What:="helo", Replacement:=aHebrewWord
I know that VBA does work with Hebrew, even though you can't actually see Hebrew in VBA (source declaring a unicode string in vba in excel) - for instance the following function works fine:
function getReverse(aHebrewWord)
getReverse=StrReverse(aHebrewWord)
end function
How can I add a Hebrew Autocorrect entry using VBA?