hi, I have the following code:
 
If Me.Urgency = 3 Then 'Red
  Me.Urgency.ForeColor = RGB(255, 0, 0)
  Me.Urgency.BackColor = RGB(255, 0, 0)
Else
  If Me.Urgency = 2 Then 'Orange
    Me.Urgency.BackColor = RGB(255, 102, 0)
    Me.Urgency.ForeColor = RGB(255, 102, 0)
  Else
    If Me.Urgency = 1...