I have a data entry table in which there is one field which is only used if there are certain values in another field.
Specifically, if [category] = 1 Or [category] = 5 I want to insist on a numerical entry in field [match] with its value less than 500.
If [category]=18 Or [category]=58 I want to insist on a numerical entry in field [match] with its value between 499 and 1000.
Whilst if [category] Between 20 And 24 I want to insist on a numerical entry in field [match] with its value greater than 999.
However if [category] has any other values, and there are many other values, I do not want any entry in the field [match] at all.
Can I achieve this within my data entry table?
p.s. as its name implies, the numerical values going in [match] are not unique, and are not automatically increased.
Specifically, if [category] = 1 Or [category] = 5 I want to insist on a numerical entry in field [match] with its value less than 500.
If [category]=18 Or [category]=58 I want to insist on a numerical entry in field [match] with its value between 499 and 1000.
Whilst if [category] Between 20 And 24 I want to insist on a numerical entry in field [match] with its value greater than 999.
However if [category] has any other values, and there are many other values, I do not want any entry in the field [match] at all.
Can I achieve this within my data entry table?
p.s. as its name implies, the numerical values going in [match] are not unique, and are not automatically increased.