J
joseph
I fould a post in which it was explained how to force backround colors based
on certain "text" conditions ... it went as follows:
Select Case Me.coname
Case "x"
Me.coname.BackColor = vbRed
Case "y"
Me.coname.BackColor = Rgb(220,220,255) 'lt blue
Case "z"
Me.coname.BackColor = vbBlue
. . .
Case Else
Me.coname.BackColor = vbWhite
End Select
.... however, my situation is a little unique and definately more involved ...
I have a report that lists the following fields: Date of Authentication,
Date of Appointment, Last Name, First Name, M.I., Office Appointed To,
Cofirmation Date, Date Oath Received.
My first color is when the oath received date is greater than 30 days from
the authentication date ... color = red
Next, If Date Oath Received is null, color = yellow
Will these be if then statements in VBA? if so, what would the code be?
I know that I will select the detail section; format event, build code to
open the VBA, but then what?
on certain "text" conditions ... it went as follows:
Select Case Me.coname
Case "x"
Me.coname.BackColor = vbRed
Case "y"
Me.coname.BackColor = Rgb(220,220,255) 'lt blue
Case "z"
Me.coname.BackColor = vbBlue
. . .
Case Else
Me.coname.BackColor = vbWhite
End Select
.... however, my situation is a little unique and definately more involved ...
I have a report that lists the following fields: Date of Authentication,
Date of Appointment, Last Name, First Name, M.I., Office Appointed To,
Cofirmation Date, Date Oath Received.
My first color is when the oath received date is greater than 30 days from
the authentication date ... color = red
Next, If Date Oath Received is null, color = yellow
Will these be if then statements in VBA? if so, what would the code be?
I know that I will select the detail section; format event, build code to
open the VBA, but then what?