Text Format

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?
 
F

fredg

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top