Based on the players PCI BMI (see other post) i need to highlight all players were they are out of range within normal BMI, which for men is 20.7 to 26.4 and for women 19.1 to 25.8, i've tried doing this using a select query on a textbox control source, however nothing comes up:
SELECT IIf(bmi Between 20.7 And 26.4, "Normal", "AbNormall")
this would only be for men also, not sure how to implement it for both sexes, after this i assume i would need to make a new module which gives the criteria and formatting commands to highlight BMI outside normal range, would i also need to make a new field in the player table?
All help much appreciated.
SELECT IIf(bmi Between 20.7 And 26.4, "Normal", "AbNormall")
this would only be for men also, not sure how to implement it for both sexes, after this i assume i would need to make a new module which gives the criteria and formatting commands to highlight BMI outside normal range, would i also need to make a new field in the player table?
All help much appreciated.