Created
September 21, 2021 07:57
-
-
Save madr/c0406ddc3cc432fb497fd9be57edb5ba to your computer and use it in GitHub Desktop.
Army Body Composition formula (METRIC SYSTEM), Google Spreadsheet formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Males (B2: waist, C2: neck) | |
# Replace `height` with actual height | |
# for the imperial system, replace 30,3 with 36,76 | |
=86,01 * Log10(B2 - C2) - 70,041 * log10(height) + 30,3 | |
# Females (B2: waist, C2: neck, D2: hips) | |
# Replace `height` with actual height | |
# for the imperial system, replace 104,912 with 78,387 | |
=163,205 * Log10(B2 + D2 - C2) - 97,684 * Log10(height) - 104,912 | |
# ALL MEASUREMENTS SHOULD BE DONE IN METRIC, LIKE THE REST OF THE WORLD DOES IT. | |
# https://friendlybit.com/other/im-not-from-america/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment