I'm using this macro to clear all text format and paste it to another document:
Selection.Copy
Windows(1).Activate
Selection.PasteAndFormat (wdFormatPlainText)
It works fine, but I need plain text with information about bolded characters as red color. In other words - I need to remove all text formatting but make bolded characters red. I was trying to iterate Selection char by char, but without success.