How do I select text with a specific colour in word?

oddlyinsane

Honorable
Mar 11, 2012
4
0
10,510
How do I select text with a specific colour in Word 2013? E.g. only highlight/select text with red font.

Thanks
 
Depends on exactly 'why', but some VBA code could do it.

Read through each character:
IF font.color = VBRed (or whatever value of red you're using), Select
Move to next character, repeat.