I have the following formula:

Code:
IF ISNULL ({CSU_CLINIC_INFO.CLINIC_NUM}) Then 
  IF {CSU_CLINIC_TYPE.CLINIC_ABRNAME}= 'NORM' Then
     {LOCAL_DOC.DOC_NAME}
  Else
     {LOCAL_DOC.DOC_NAME}+ ' [' + {CSU_CLINIC_TYPE.CLINIC_ABRNAME} + ']'
Else
  {CSU_NURSE_CLINIC.NURSE_CLINIC_NAME}
I want the LOCAL_DOC.DOC_NAME (bolded above) to be normal font, while the CSU_CLINIC_TYPE.CLINIC_ABRNAME is displayed as bold in the report. Is that possible?