Hightower: " , ?"
"" , , , , , , . , ( ), ( , ).
Sub Cell_Format(InText as Range)
InText.formula = cstr(InText.value) ' converts result of formula into a string literal
'or: InText.offset(0,1).formula = cstr(InText.value)
InText.characters(1, 5).font.color = vbRed
End Sub
Cell_Format range("$A$1") $A $1 .
, , :
Sub Range_Format(InText as Range)
For each c in InText
Cell_Format(c)
Next
End Sub