fiogf49gjkf0d I think this is probably something easy to do, but I have no clue. I want the color of a field to change if the field contains "Retired" from a picklist. This is for the Satus field on the Account Detail Form.
I know how to do this with Check Boxes :
Sub chkCODClick(Sender)
If Sender.Checked Then
lblCOD.Color = clyellow
Else
lblCOD.Color = clBtnFace
End If
End Sub
But I don't know how for this scenario. I would really appreciate someone pointing me in the right direction. Thank you 
|