G gomes. Registered User. Local time Yesterday, 19:44 Joined Feb 14, 2008 Messages 27 Feb 14, 2008 #1 The data that is to be entered in the field "Rank", is either RK1, RK2 or RK3 How would I make the validation in a table make the user enter the format RK(Number), with only numbers from 1-3? Thanks!
The data that is to be entered in the field "Rank", is either RK1, RK2 or RK3 How would I make the validation in a table make the user enter the format RK(Number), with only numbers from 1-3? Thanks!
Dennisk AWF VIP Local time Today, 03:44 Joined Jul 22, 2004 Messages 1,649 Feb 14, 2008 #2 2 Steps are required 1) create an input mask that only allows 2 Alpha and one numeric. 2) in the before update for the text box check then last character is 1,2, or 3
2 Steps are required 1) create an input mask that only allows 2 Alpha and one numeric. 2) in the before update for the text box check then last character is 1,2, or 3
neileg AWF VIP Local time Today, 03:44 Joined Dec 4, 2002 Messages 5,970 Feb 14, 2008 #3 Or set the validation to be In (RK1, RK2, RK3)
Dennisk AWF VIP Local time Today, 03:44 Joined Jul 22, 2004 Messages 1,649 Feb 14, 2008 #4 even easier if RK is always a constant then you may not need to even store it, then all you need to do is check the number is between 1 and 3.
even easier if RK is always a constant then you may not need to even store it, then all you need to do is check the number is between 1 and 3.
G gomes. Registered User. Local time Yesterday, 19:44 Joined Feb 14, 2008 Messages 27 Feb 14, 2008 #5 Thank you all.