July 20, 200421 yr How do I go about Rounding the result of a calculation? Here is my calculation: (weight / (height * height))* 703 I know to use the Round Function but I am not sure where in my calculation it goes? Thx
July 20, 200421 yr Round( your calc, precision ) => Round(weight * 703/(height * height), 0) would round the result to an integer.
July 20, 200421 yr Author that worked on that calculation Queue but I am still getting 4 decimal places on this calculation: Round (66 + (13.7 * (weight / 2.2)) + (5 * (height * 2.54)) - (6.8 * age);1)* Case( active_level = "sedentary"; 1.2; active_level = "light"; 1.375; active_level = "moderate"; 1.55; active_level = "very"; 1.725; active_level = "extra"; 1.9 ) That seems strange? Thank You!!
July 20, 200421 yr Round needs to encompass the full calculation. Round ( 66 + (13.7 * (weight / 2.2)) + (5 * (height * 2.54)) - (6.8 * age) * Case( active_level = "sedentary"; 1.2; active_level = "light"; 1.375; active_level = "moderate"; 1.55; active_level = "very"; 1.725; active_level = "extra"; 1.9 ); 1 )
July 20, 200421 yr Author OOOHHH...gotcha...I figured it was something simple I was doing wrong...thx!!
Create an account or sign in to comment