Good afternoon,
I have a table with the following fields;
category
interval
value
I need to control data entry in the value field in a manner that allows duplicates only if they are not sequenced. This example is sequenced;
category interval value
a-pm 5 8
a-pm 3 9
b-pm 6 9
This example is not sequenced;
category interval value
a-pm 5 8
a-pm 3 9
b-pm 6 8
In the first example, the number 9 is sequenced. The second example it is not although in both cases it is duplicated which is fine. I'm not sure how to approach this. Seems like a loop would be best to determine if a sequence exists. Any thoughts would be helpful
hoof
I have a table with the following fields;
category
interval
value
I need to control data entry in the value field in a manner that allows duplicates only if they are not sequenced. This example is sequenced;
category interval value
a-pm 5 8
a-pm 3 9
b-pm 6 9
This example is not sequenced;
category interval value
a-pm 5 8
a-pm 3 9
b-pm 6 8
In the first example, the number 9 is sequenced. The second example it is not although in both cases it is duplicated which is fine. I'm not sure how to approach this. Seems like a loop would be best to determine if a sequence exists. Any thoughts would be helpful
hoof