I remember seeing a WordBasic macro for this years ago; I guess it's the
sort of thing a lot of users find useful, though I would be inclined to use
AutoCorrect entries for specific transpositions that I'm prone to. But
here's a VBA macro posted by Larry (
[email protected]) two years ago:
Sub TransposeCharacters()
Application.ScreenUpdating = False
Selection.Characters(1).Cut
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.Paste
End Sub