As I scroll through records....several of them highlight the detail
background to red even though the two controls have the same number.
The controls Total and TotalAbat are calculated controls....for example.....
control Source =Round((nz(txt1),0)+(nz(txt2),0),2)
???
here is the code
Private Sub Form_Current()
If Assessor - Total <> 0 Then
Me.Detail.BackColor = vbRed
Else
Me.Detail.BackColor = -2147483633
End If
If AssessorAbate - TotalAbat <> 0 Then
Me.Detail.BackColor = vbRed
Else
Me.Detail.BackColor = -2147483633
End If
End Sub