There is a way to do this by formula if you have some patience and ask your users to limit their enthusiasm for the of this field. For example, asking them not to use any color.
You can create a formula text field to successively strip out the html.
Here is an example of text in a Rich Text field
hello
goodbye bold italics underlineThen the formula below removes pairs of html - generally they come in pairs to start say underline <u> and then to end it with </u>.
var text Raw = [My Rich Text Field];
var text RemoveStrikeout = SearchAndReplace(SearchAndReplace($Raw,"<s>",""),"</s>","");
var text SubstituteSpace = SearchAndReplace($RemoveStrikeout," "," ");
var text RemoveStrong = SearchAndReplace(SearchAndReplace($SubstituteSpace,"<strong>",""),"</strong>","");
var text RemoveEM = SearchAndReplace(SearchAndReplace($RemoveStrong,"<em>",""),"</em>","");
var text RemoveUnderline = SearchAndReplace(SearchAndReplace($RemoveEM,"<u>",""),"</u>","");
$RemoveUnderline
So you would run a report looking for where this formula field still contains a "<" character and then enhance the formula with yet another SerachAndReplace. But this would not work for color as there are too many colors to trap (pretty much infinite colors).
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.commark.shnier@gmail.com
------------------------------