-
[RESOLVED] Bold
I'm using a formula to convert some data for one of my fields.
Code:
If {BILLING_PERIOD.STATUS_IND} = '0' Then "NOT USED"
Else If{BILLING_PERIOD.STATUS_IND} = '2' Then "UNRECONCILED"
Else If {BILLING_PERIOD.STATUS_IND} = '5' Then "RECONCILED"
Else If {BILLING_PERIOD.STATUS_IND} = '6' Then "CLOSED"
If the status indicator is 2 I want only that field to be bold. Any suggestions?
-
Re: Bold
Use this in the Style formula of the report object that you want to bold
Code:
If {BILLING_PERIOD.STATUS_IND} = '2' Then
crBold
Else
crRegular
-
Re: Bold