Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conditional Format a field

Status
Not open for further replies.

bmlimited

Technical User
Jul 7, 2004
2
CA
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 you are saying you want to bold part of the text in a control then this is impossible with standard Access controls. There is a rich text control in some developer editions of office and there is one here:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top