I want to change "grape" to グレープ and below is the code I wrote,
but If I insert "ー" it is displayed as "?".
How can I solve this problem...??
Sub change_name()
Dim c As Range
For Each c In Selection
c.Value = Replace(c.Value, "grape", "グレ?プ")
Next
End Sub