M
mark
You might write code similar to this in the AfterUpdate
event of both your days field and your v100 field:
If Me.daysField.Value > 14 And Me.v100Field.Value > 79.999
Then
Me!v100StatusField.Value = "OK"
Else
Me!v100StatusField.Value = "Not OK"
End If
Hope that helps.
event of both your days field and your v100 field:
If Me.daysField.Value > 14 And Me.v100Field.Value > 79.999
Then
Me!v100StatusField.Value = "OK"
Else
Me!v100StatusField.Value = "Not OK"
End If
Hope that helps.