I have the following simple query:
SELECT Last3MtchQry.[Thrower-Name], Int(Avg([Score-Avg])+0.5) AS Current3WkAvg, 672 - Int(Avg([Score-Avg])+0.5) AS CurrentHndyKap, Last3MtchQry.ID
FROM Last3MtchQry
GROUP BY Last3MtchQry.[Thrower-Name], Last3MtchQry.ID;
Every week I have to manually change the hard-coded 672 value. I want to change the hard-coded 672 to the max average value so that the person with that value ends up with a zero handicap. Anyone got any ideas how to do this?