J
Juan Schwartz
I didn't see an option for this in the report design view... I saw you
could set a specific number, but I'm comparing field1 to field2 for the
condition. Is this possible?
I tried the following in VBA
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Day1.Value > Day1avg4.Value Then
Day1.FontWeight = 700
Day1.FontItalic = False
Else
Day1.FontWeight = 400
Day1.FontItalic = True
End If
End Sub
It seems to just look at the first and format all based up that first
calculation.
could set a specific number, but I'm comparing field1 to field2 for the
condition. Is this possible?
I tried the following in VBA
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Day1.Value > Day1avg4.Value Then
Day1.FontWeight = 700
Day1.FontItalic = False
Else
Day1.FontWeight = 400
Day1.FontItalic = True
End If
End Sub
It seems to just look at the first and format all based up that first
calculation.