Conditional Field

G

Gloria

I have a field that shows "Project Number". I want to show the field only
when the Project Awarded field is true.
 
L

Linq Adams via AccessMonster.com

In the AfterUpdate event of the ProjectAwarded control ***AND*** in the
Form_Current event

If Me.ProjectAwarded Then
ProjectNumberControl.Visible = True
Else
ProjectNumberControl.Visible = Flase
End If
 
L

Linq Adams via AccessMonster.com

Sorry for the typo!

ProjectNumberControl.Visible = Flase

should, of course, be

ProjectNumberControl.Visible = False
 
Top