Q
quirkyjoe
Say I have an Access table that lloks like this:
Num Test Value
1 1 44
1 2 55
1 3 66
2 1 103
2 2 102
2 3 101
I want to construct a query and find the max "Value" for each Num
field and ignore the
ones that are not maxes. So how do I construct a query and get this
result
using the example:
Num Test Value
1 3 66
2 1 103
Basically I want to go through each Num and find the max Value and
also have it so I can identify which Test the max Value came from.
Thanks!
Num Test Value
1 1 44
1 2 55
1 3 66
2 1 103
2 2 102
2 3 101
I want to construct a query and find the max "Value" for each Num
field and ignore the
ones that are not maxes. So how do I construct a query and get this
result
using the example:
Num Test Value
1 3 66
2 1 103
Basically I want to go through each Num and find the max Value and
also have it so I can identify which Test the max Value came from.
Thanks!