Hello all,
I have a query from two tables. I want to compare certain cells in the two tables and highlight any changes where the cell doesn't match. I have the form built with the columns I want but the problem is that it highlights the entire column and not the particular cell. The code I'm using is:
Private Sub Form_Current()
If Me.UMD_current_AFSC <> Me.UMD_old_AFSC Then
Me.UMD_current_AFSC.BackColor = red
End If
End Sub
Any help would be greatly appreciated.
Milt
I have a query from two tables. I want to compare certain cells in the two tables and highlight any changes where the cell doesn't match. I have the form built with the columns I want but the problem is that it highlights the entire column and not the particular cell. The code I'm using is:
Private Sub Form_Current()
If Me.UMD_current_AFSC <> Me.UMD_old_AFSC Then
Me.UMD_current_AFSC.BackColor = red
End If
End Sub
Any help would be greatly appreciated.
Milt