About fonts in a text field

Ciao,I’ve a form with days of the week.

I want that the text field WD (Week Day) displays Sat or Sun in bold text and red color.

Any suggestion (it’s friday, and I have difficult to find a solution…) ?

Many thanks and have a nice weekend

Nicola

Subject: Is it an editable field?

You can’t change the color of a text field on the fly. You can, however, have two fields (computed for display, let’s say) in different fonts, and use hide formulas to only display one of them at a time. Or, just set them side by side and give them formulas that will always make one contain a value and the other be blank e.g. @If(@Weekday(DateNeeded) = 1:7; “”; @Select(@Weekday(DateNeeded)-1; “Mon”; “Tue”; “Wed”; “Thu”; “Fri”)) for one field, and the opposite for the other field.

Subject: No, are computed fields

Ciao Andre, your reply gives me an idea…I’ll try with two fields with hide formula.Many thanks and have a nice week