I want to format a field bold in my report on a specified condition. I am using the following code in the On Format section of the report ...
If C1Member = True Then
Child1.FontBold = True
Else
Child1.FontBold = False
End If
My problem is I want the field "Child1" to be bold when it is in a string with formulas, etc. The above code only formats when Child1 is in its own field on the report.
Thanx in advance,
bmlimited
If C1Member = True Then
Child1.FontBold = True
Else
Child1.FontBold = False
End If
My problem is I want the field "Child1" to be bold when it is in a string with formulas, etc. The above code only formats when Child1 is in its own field on the report.
Thanx in advance,
bmlimited