I am not good at macros, so please can someone assist me. I need to have this symbol in my macro
ʼn
So the comma is like a 9 not a 6 but the macro my colleague wrote for me does not work on my pc but it works on hers — this is it here:
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
.Text = "'n "
.Replacement.Text = "’n "
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With


'nshould give you that symbol, but not sure if that is what you are looking for? – Peter Grill Oct 2 '12 at 5:29\textquoteright nor just plain ol''n. – Werner Oct 2 '12 at 5:29Select.Find.ExecuteI found this page, so clearly this is off-topic. – egreg Oct 2 '12 at 7:28