Article ID: 142144
Article Last Modified on 10/11/2006
Sub Add_Item()
'The following macro code assigns "Msft" to replace any new
'occurrence of the word "Microsoft".
Application.AutoCorrect.AddReplacement "Microsoft", "msft"
End Sub
Sub Remove_Item()
'The following macro code removes the replacement
'item for "Microsoft".
Application.AutoCorrect.DeleteReplacement "Microsoft"
End Sub
How do I edit the AutoCorrect list?
Additional query words: XL7
Keywords: kbcode kbhowto kbprogramming KB142144