G
Guest
Suppose I have a table like this...
tblFIXData
----------
ID...........FixNo.........FixStatus
1............1...............Good
2............2...............Good
3............3...............Good
4............4...............Good
5............1...............Bad
6............2...............Good
7............3...............Good
8............4...............Good
9............1...............Good
10..........2................Bad
11..........3................Good
12..........4...............Good
I want to be able to query only the first four ID's since the first four
FixNo's (group1-4) are all good. ID's 5-8 start with a bad so all of that
group is considered bad. The group of ID's 9-12 have a bad within the 4
fixno's(in position 2) so They are also considered all bad.
Is there a way to filter this using a query? Note that the number of
fixno's can vary from 1-6.
Thanks a million.
Eskimo
tblFIXData
----------
ID...........FixNo.........FixStatus
1............1...............Good
2............2...............Good
3............3...............Good
4............4...............Good
5............1...............Bad
6............2...............Good
7............3...............Good
8............4...............Good
9............1...............Good
10..........2................Bad
11..........3................Good
12..........4...............Good
I want to be able to query only the first four ID's since the first four
FixNo's (group1-4) are all good. ID's 5-8 start with a bad so all of that
group is considered bad. The group of ID's 9-12 have a bad within the 4
fixno's(in position 2) so They are also considered all bad.
Is there a way to filter this using a query? Note that the number of
fixno's can vary from 1-6.
Thanks a million.
Eskimo