I'm having trouble developing a complex query:
I'm trying to calculate the Body Fat % (for women)based upon the Waist, Hips and Height measurement using the following formula:
%Fat=495/(1.29579-.35004(log(abd1+hip-neck))+.22100(log(height)))-450
Using the following numbers:
29" waist, 37.25" hips, 12.25" neck, who is 64" tall I should get the following answer:
%Fat = 495/(1.29579-.74812+.48863)-450 = 27.659
However; Access requires me to put the following
%Fat=495/(1.29579-.35004*(log(abd1+hip-neck))+.22100*(log(height))-450
My answer is
Expr1: 15469.15% Obviously incorrect - It must be those *
Any ideas on how I can get this formula to work correctly?
Thanks for taking the time
I'm trying to calculate the Body Fat % (for women)based upon the Waist, Hips and Height measurement using the following formula:
%Fat=495/(1.29579-.35004(log(abd1+hip-neck))+.22100(log(height)))-450
Using the following numbers:
29" waist, 37.25" hips, 12.25" neck, who is 64" tall I should get the following answer:
%Fat = 495/(1.29579-.74812+.48863)-450 = 27.659
However; Access requires me to put the following
%Fat=495/(1.29579-.35004*(log(abd1+hip-neck))+.22100*(log(height))-450
My answer is
Expr1: 15469.15% Obviously incorrect - It must be those *
Any ideas on how I can get this formula to work correctly?
Thanks for taking the time