validation - How do I write an “OR” statement for MS Access? -


add validation rule level fiesld store values equal 1 or 2

well, 1 way is:

  fiesld  in ("1", "2") 

or

fiesld = 1 or fiesld = 2 

you didn't datatype of fiesld, used string in first example , int in second.


Comments

Popular posts from this blog

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

ruby on rails - Authlogic - how to make a registration and don't log in the new account? -