B
Bill
I have the following SQL statement that will rank my data. I am trying to
perform that ranking within age groups. I cannot get it to work. Can anyone
help?
The statement below works but it ranks all the data 1 thru whatever.
UPDATE AAJGAJuniors SET aajgajuniors.rank =
dcount("1","aajgajuniors","score<=" & [score]);
When I try to add the where clause as below, it will not rank by age group.
What am I doing wrong?
UPDATE AAJGAJuniors SET aajgajuniors.rank =
dcount("1","aajgajuniors","score<=" & [score]) where "agegroup <=" &
[agegroup];
Thank you for your help.
perform that ranking within age groups. I cannot get it to work. Can anyone
help?
The statement below works but it ranks all the data 1 thru whatever.
UPDATE AAJGAJuniors SET aajgajuniors.rank =
dcount("1","aajgajuniors","score<=" & [score]);
When I try to add the where clause as below, it will not rank by age group.
What am I doing wrong?
UPDATE AAJGAJuniors SET aajgajuniors.rank =
dcount("1","aajgajuniors","score<=" & [score]) where "agegroup <=" &
[agegroup];
Thank you for your help.