Compare content of two ranges INCLUDING FORMATTING
I'm comparing the content of two ranges in Word like this:
If range1.Text = range2.Text Then
...
EndIf
This works fine for actual content, but I would like to include text formatting into the comparrison as well. So if I have two ranges with the same text, BUT the text in range1 is bold, I would like the comparrison to return false.
Any ideas?
Thanks
|