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

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

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -