Home
Challenges
Calculate BMI (Index)
Analysis
Easy

Calculate BMI (Index)

An Excel health tracker stores weight and height, and you need to calculate BMI and place each result into the right category.

AuthorExcelClash Team
PublishedApr 02, 2026
Calculate BMI (Index)

The Problem

In this guide, we will explore exactly how to calculate the Body Mass Index (BMI) in Excel. The challenge is not just about getting one number. It is about doing the same calculation correctly across a full list of people.

When weight and height are stored separately, BMI has to be calculated with the right order of operations. That is where mistakes happen. A small formula error can change the result enough to place someone in the wrong category.

In this challenge, you need to calculate the BMI for each participant, then turn that number into a status such as Healthy or Overweight. After that, the summary section checks how many records were processed and how many people landed in the healthy range.

How We Solve It

The BMI formula is weight divided by height squared. In Excel, that means we either use the exponent operator ^ or the POWER function to square the height before dividing.

Once the BMI is calculated, IFS can assign a readable label based on threshold ranges. That makes the sheet much easier to review than a plain list of decimal results.

Method 1: Use the Exponent Operator

Basic Exponent Illustration
Method 1: Use the exponent operator to square height before dividing weight by it.

This is the shortest version of the BMI formula. Height is squared with ^2, then weight is divided by that result.

The key detail is the parentheses. They make sure the squaring happens in the denominator before the division uses the result.

=B2/(C2^2)

Method 2: Use POWER for Readability

Power Function Illustration
Method 2: Use POWER when you want the same math written more explicitly.

POWER does the same math as ^, but some people prefer it because the intent is easier to read at a glance.

That can help when the workbook is shared with someone who understands functions more quickly than operators.

=B2/POWER(C2,2)

Method 3: Convert BMI to a Category

Status Branding Illustration
Method 3: Turn the BMI score into a readable category with IFS.

Raw BMI values are useful, but the category is easier to scan. IFS lets you test the BMI against multiple ranges in order and return the right label.

This makes the sheet easier to review quickly, especially when the goal is to count how many people fall into a specific range.

=IFS(D2<18.5,"Underweight",D2<25,"Healthy",D2<30,"Overweight",TRUE,"Obese")

Function Explanation

1. Division and Exponentiation

The main calculation is weight divided by height squared. That means Excel needs both division and exponent logic in the same formula.

The important part is the structure, not just the symbols. If the denominator is written incorrectly, the BMI result will also be wrong.

2. POWER

POWER raises a number to a chosen exponent. In this challenge, it is simply another way to square height.

It is useful when you want the formula to read more like a named step instead of a math operator.

Learn more this functionPOWER

3. IFS

IFS tests several conditions in order and returns the first matching result. That makes it a good fit for category bands like BMI ranges.

Instead of writing nested IF formulas, you can read the ranges from top to bottom and see the category logic more clearly.

Learn more this functionIFS

If you ever get strange BMI results, check the height unit first. The challenge uses meters, so the formula assumes the values in column C are already in meters.

Try Yourself

Calculate the BMI for each participant using weight and height, then classify the result with a health status label. After the row formulas are done, finish the summary section so the worksheet shows how many total records were processed and how many people fall into the healthy range.

1
Objective #1
Cell: D2-D6

In Column D, calculate the BMI for every participant (Weight / Height^2).

2
Objective #2
Cell: E2-E6

In Column E, assign a Health Status based on BMI: Under 18.5 is "Underweight", 18.5-24.9 is "Healthy", 25-29.9 is "Overweight", and 30+ is "Obese".

3
Objective #3
Cell: B9

In cell B9, count the total number of participants in your wellness roster.

4
Objective #4
Cell: B10

In cell B10, identify the total count of "Healthy" individuals in your database roster.

Tactical Arena
Objectives Met: 0 / 0
Share this challenge
Share this challenge

Let others know about this challenge!

Related Challenges
Lookup
#22
Map Product Categories

An Excel product list uses short code prefixes, and you need to convert them into readable category names.

Easy
Forecasting
#23
Estimate Completion Time

An Excel task sheet has start dates and durations, and you need to calculate delivery dates without counting weekends.

Easy
Cleanup
#24
Validate Email Formats

An Excel email list contains questionable entries, and you need to flag which ones match a basic valid format.

Easy
Cleanup
#25
Extract First Word from Text

An Excel text list contains multi-word entries, and you need to pull the first word so the data is easier to group.

Easy
Discussion
0 Feedbacks
ExcelClash

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster—without boring lessons. Just hands-on practice that actually sticks.

Navigation
Back to Challenges
Go to Dashboard
Platform Home
Discover
SUM FunctionsLookup FunctionsConditional FunctionsLogical Functions
Support
About UsContact UsPrivacy PolicyTerms of Service
© 2026 ExcelClash, Inc. All rights reserved.
Objectives Met: 0 / 0