S
Songoku
Hi
I have a report in Access 97 where I am having to code the conditional
formating for specific values. This works great as long as there are values.
However when there are no values I get a an error saying
run-time error '2427' entered an expression that has no value
ok, so I guess this is null value related. I have tried nz in the query
which feeds the report but this does not work.
I am using if statements to perform the necessary conditional formating can
I use an if isnull ignore code?
If Me.stat1 = "Speeding" Or Me.stat1 = "Dangerous Driving" Or Me.stat1 =
"Abuse" Then
Me.stat1.ForeColor = vbRed
Else
Me.stat1.ForeColor = vbBlack
End If
any suggestions please Thnxs in advance
I have a report in Access 97 where I am having to code the conditional
formating for specific values. This works great as long as there are values.
However when there are no values I get a an error saying
run-time error '2427' entered an expression that has no value
ok, so I guess this is null value related. I have tried nz in the query
which feeds the report but this does not work.
I am using if statements to perform the necessary conditional formating can
I use an if isnull ignore code?
If Me.stat1 = "Speeding" Or Me.stat1 = "Dangerous Driving" Or Me.stat1 =
"Abuse" Then
Me.stat1.ForeColor = vbRed
Else
Me.stat1.ForeColor = vbBlack
End If
any suggestions please Thnxs in advance