Break the field into two sections by creating two formulas:
//{@firstsegment}:
stringvar array z := split({table.textfield}," ");
z[1]
//{@remaining}:
stringvar array z;
numbervar i;
stringvar y;
for i := 2 to ubound(z) do(
y := y + z+" "
);
y
Drop these into a text box, adding one space between. Then right click->format text and select the first segment and format it to red. Repeat for the other formula in the text box.
-LB