I have a query I'm trying to run where I have two fields for criteria. One is called Sequence, and the other is Person. I need to be able to pull any Sequences that go beyond '1', so anything that has a sequence 1,2 or 1,2,3, etc and trash those records that only have sequence 1. However, I cannot just do Sequence > 1 because that will get rid of any of the Sequences that are the start of a series, like 1,2,3.
Also, for all series of sequences, I want to only pull those series where the name is not the same throughout the series. For example, I would want records like this:
Record Sequence Person
1 1 Bob
2 2 Dave
But not records like this:
Record Sequence Person
1 1 Bob
2 2 Bob
In other words, the Person has to change from sequence to sequence. It would be alright if I got something like this, however:
Record Sequence Person
1 1 Bob
2 2 Bob
3 3 Dave
Or something like this:
Record Sequence Person
1 1 Bob
2 2 Dave
3 3 Dave
The sequence can go as high as possible - there is no limit.
Thanks for any help in advance!
Laina
Also, for all series of sequences, I want to only pull those series where the name is not the same throughout the series. For example, I would want records like this:
Record Sequence Person
1 1 Bob
2 2 Dave
But not records like this:
Record Sequence Person
1 1 Bob
2 2 Bob
In other words, the Person has to change from sequence to sequence. It would be alright if I got something like this, however:
Record Sequence Person
1 1 Bob
2 2 Bob
3 3 Dave
Or something like this:
Record Sequence Person
1 1 Bob
2 2 Dave
3 3 Dave
The sequence can go as high as possible - there is no limit.
Thanks for any help in advance!
Laina