Hi All!
I have a field (field A) in a form that is based on calculation of field B + field C. I wanted another field (field D) to auto enter a description based on field A result.
E.g.
if field A > 10, then field D = KK1
if field A = 8-10, then field D = KK2
I tried these:
Private Sub A_AfterUpdate()
If [A] > 10 Then
[D] = "KK 1"
If [A] = 8 - 10 Then
[D] = "KK 2"
End Sub
Tested it but no changes happened to field D...
Kindly help, thanks!