Thanks that helped me do what I wanted except that I want other text boxes to change color based as well based on the value of the original one. The other text box I want to change as well is called Meeting.
Thanks in advance
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
FormatStatus
End Sub
Private Sub Detail_Paint()
FormatStatus
End Sub
Function FormatStatus()
If Me.Status = 2 Then
Me.Status.BackColor = 13777215
End If
If Me.Status = 1 Then
Me.Status.BackColor = 15777215
End If
End Function