hi
looks like you have a problem here.
Under the FIELD "Office Location"
right click on that field and
under font style
click x2 and enter this
--------------
if
{Office Location} = "Management" then CRBold
else
if
{Office Location} = "Director" then CRItalic
else
if
{Office Location} = "Volunteer" then CRRegular
------------------------
try it works in crystal 8.5
if your using crystal 7 then read below
Conditionally formatting font face, style, or size
The information in the article refers to:
Seagate Crystal Reports 7
Applies to:
All versions
Conditional formatting a field to appear in bold
Using conditional suppression
Synopsis
How can you conditionally format a field to appear in bold?
Font attributes such as font face, style and size do not have the option to be applied conditionally
Solution
There is a workaround which creates the appearance of having a conditionally formatted font attribute.
This solution below refers to database fields and bolding, but it also works with text objects, formula fields, and parameter fields that you want to display with conditional font faces, styles, or sizes.
1. Insert another copy of the field to be bolded on to the report. Place the two copies side by side for now.
2. Right-click one copy of the field, and click 'Change Font'.
3. In the 'Style' box, click 'Bold'.
4. Go to the Common tab and click 'X+2' beside the 'Suppress' check box. This opens the Conditional Formatting Formula Editor.
5. Type the condition that needs to be met to suppress the bolded field. For example, you only want the bolded field to display if its value is greater than zero, so the suppression criteria is:
{database.field} <= 0
· Check and save this formula.
· Click OK to return to the report.
6. Right-click the other copy of the field, and click 'Change Font'.
7. In the 'Style' box, click 'Regular' if it isn't already selected.
8. Go to the Common tab and click 'X+2' beside the 'Suppress' check box. This opens the Conditional Formatting Formula Editor.
9. Type the inverse of the condition you specified in step 5. For example, you only want display the non-bolded field when its value is less than or equal to zero, so the suppression criteria is:
{database.field} > 0
· Check and save this formula.
· Click OK to return to the report.
10. Preview the report to make sure the conditional suppression is working as you intended - you will either see the bolded field, or the non-bolded field, but you won't see both of them at the same time.
11. In the Design tab of the report, move copy two of the field so it is directly on top of the original copy.
This field displays as if it was formatted with conditional bolding.
pg