Skip to content

Instantly share code, notes, and snippets.

@madr
Created September 21, 2021 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madr/c0406ddc3cc432fb497fd9be57edb5ba to your computer and use it in GitHub Desktop.
Save madr/c0406ddc3cc432fb497fd9be57edb5ba to your computer and use it in GitHub Desktop.
Army Body Composition formula (METRIC SYSTEM), Google Spreadsheet formula
# 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