
CR7 - Changing a Field's Font Based on a Formula
If you look in the Font dialog box, the only condition you can change is the
color. What I've done for clients is create two text. Same text, same size,
overlaid. And then use a formula similar to yours to suppress one or the
other. Not elegant, but it did work.
Brian
Quote:
>Hello,
>Does anyone know how to change a field to bold (or underline it) if it's
>value is within a certain range.
>I can change the background of the field in the detail section using this
>formula attached to the background
>if ToNumber({Milage}) > 50 and ToNumber({Milage}) < 100 then
> // it's here I want to change this field to bold
> red
>else
> white
>But I really want to change the fields font. Any answers would be greatly
>appreciated