G
Guest
Hi All,
I have a text field. I want the user not to be able to enter a value in
that's greater than something in another text field.
I put this in the "after update" for the Seq_Num text box
If (Me.Seq_Num > Me.Total_Seq) Then
Me.Seq_Num = Me.Total_Seq + 1
End If
However the value in Seq_Num gets altered no matter what I put in the text
box (ie, a lower value).
I must be missing something obvious. Can someone please help me out?
I have a text field. I want the user not to be able to enter a value in
that's greater than something in another text field.
I put this in the "after update" for the Seq_Num text box
If (Me.Seq_Num > Me.Total_Seq) Then
Me.Seq_Num = Me.Total_Seq + 1
End If
However the value in Seq_Num gets altered no matter what I put in the text
box (ie, a lower value).
I must be missing something obvious. Can someone please help me out?