How do I do that?
You can use conditional formatting on textbox controls, but not on label controls.
Guessing that you mean a text box control, then click on it, select
conditional formatting and use the Expression is option
Set your expression to something like
[AnotherField] = "My value"
Then set up you font color change.
If you need to do this with a label, you can convert the label to a textbox
control and set its control source to something like
="This is my label"
Or you can use VBA to change the font color of the label in the format event
of the section that contains the label
IF [AnotherField] = "My value" Then
ME.SomeLabel.ForeColor = vbRed
ELSE
ME.SomeLabel.ForeColor = vbBlack
END IF
John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County