Text Format

  • Thread starter Thread starter ZBC
  • Start date Start date
Z

ZBC

I am currently using #,###.00;(#,###.00)[Red];0.00;0.00
as my format for currency.
I would like for the red negatives to be bold .... is there a was to do
that?
 
ZBC said:
I am currently using #,###.00;(#,###.00)[Red];0.00;0.00
as my format for currency.
I would like for the red negatives to be bold .... is there a was to do
that?
Not in the Format property of the control.
You can, however, do it in the Report's Detail Format event (assuming
the control is in the Detail Section):

If [SomeField] < 0 Then
[SomeField].FontBold = True
Else
[SomeField].FontBold = False
End If
 
Back
Top