jaaret
Instructor
- Jun 19, 2002
- 171
Is there a way to apply custom conditional formatting background and font colors, or am I limited to the palette provided in the Condtional Formatting Dialogue Box?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Open(Cancel As Integer)
Dim FCS As FormatConditions, FC As FormatCondition
'Date
Set FCS = Me!Updated.FormatConditions
FCS.Delete ' Delete all format conditions
Set FC = FCS.add(acFieldValue, acEqual, "#29/06/2007 05:46:50#")
FC.BackColor = 9033867
Set FC = Nothing
Set FCS = Nothing
End Sub