Code to remove all diacritics
Hi! Can someone help me with this code?
Sub RemoveDiacriticsFromName()
Dim Name As String
Name = "Túró" 'This is just an example
'Here: Insert code (not function) to remove all diacritics from any Name
MsgBox Name (= Turo)
End Sub
|