Access 2013
I am trying to format a field within a report. I have the event on the On Format of Detail. Two fields, if one is greater than the other, make the font red, if not, black. Here is my code:
Dim ct As Integer
Dim tc As Integer
ct = Me.TextOverUnder
tc = Me.TextAvg
If ct > tc...