A
an
Hello!
I have a Form based in T_General with textboxes to:
Value
=Sum([Value])
=Count([Value])
=Avg([Value])
And 2 boxes (GreenBox and RedBox)
I would like to show green box or red box according to value is <Avg or >Avg
similary the:
If [Value] < [Avg] Then
RedBox.Visible = True
End If
Else
If[Value] > [Avg] Then
GreenBox.Visible = False
End If
End Sub
Thanks in advange.
an
I have a Form based in T_General with textboxes to:
Value
=Sum([Value])
=Count([Value])
=Avg([Value])
And 2 boxes (GreenBox and RedBox)
I would like to show green box or red box according to value is <Avg or >Avg
similary the:
If [Value] < [Avg] Then
RedBox.Visible = True
End If
Else
If[Value] > [Avg] Then
GreenBox.Visible = False
End If
End Sub
Thanks in advange.
an