View Single Post
  #1  
Old May 18th, 2010, 10:54 PM posted to microsoft.public.access.forms
Dee
external usenet poster
 
Posts: 644
Default Conditinal Format Not Working

I am trying to get a field to turn red if the condition is "High"
I tried using the conditional formatting and it does not work. I also tried
using the below vba code and this does not work either. I tried it in the
after update procedure and the on current procedure with no luck. Could this
be an Access bug?

Private Sub Critical_AfterUpdate()
If Me.Critical = "High" Then
Me.Critical.ForeColor = vbRed
End If
End Sub