You'll need to provide a little more information than that. You could use
Find and Replace to swap alternate characters thoughout your document, but
presumably that's not quite what you have in mind.
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
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.