Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have height ( in centimetes) and Weight (in kgs)columns, From this How to calculate BMI
Height(cm) | Weight(kg) |
168 | 75 |
180 | 78 |
178 | 85 |
If you want to add the BMI calculation to the client, You can add a measure to the straight table with the following formula:
(Weight/[Height(cm)]/[Height(cm)]) * 10000
Result:
Eli.
If you want to add the BMI calculation to the client, You can add a measure to the straight table with the following formula:
(Weight/[Height(cm)]/[Height(cm)]) * 10000
Result:
Eli.
To calculate BMI (Body Mass Index) using height in centimeters and weight in kilograms, you can use the following formula:
BMI = weight (kg) / (height (m) × height (m))
Since your height is in centimeters, you'll first need to convert it to meters by dividing it by 100.
Here’s how it works for your data:
168 cm / 75 kg
→ Height in meters = 1.68
→ BMI = 75 / (1.68 × 1.68) ≈ 26.57
180 cm / 78 kg
→ Height in meters = 1.80
→ BMI = 78 / (1.80 × 1.80) ≈ 24.07
178 cm / 85 kg
→ Height in meters = 1.78
→ BMI = 85 / (1.78 × 1.78) ≈ 26.80
If you want a faster way to calculate and visualize BMI ranges, you can use this free tool I created:
👉 https://FullBMICalculator.com
It supports metric and imperial units, BMI classification, health tips, and more.
Hope this helps!
This was an Interesting post. Thanks i learnt something new.