Home
Challenges
Highlight Low Stock Items
Analysis
Easy

Highlight Low Stock Items

An Excel inventory sheet needs reorder alerts, and you need to flag items whose stock has dropped too low.

AuthorExcelClash Team
PublishedApr 02, 2026
Highlight Low Stock Items

The Problem

Stock tables can look fine until one location quietly drops too low. An item may still have quantity somewhere, but if either the shelf or the warehouse is near empty, the team needs to know before it turns into a stockout.

That is why inventory alerts usually need more than one number. Shelf quantity shows what customers or staff can reach right now, while warehouse stock shows whether replenishment is available behind the scenes. Either one can create risk when it falls below the business threshold.

The flow below shows the alert logic. Each item has two stock sources, and a low value in either place is enough to trigger a reorder status.

Low stock alert problem flow
The Problem: Reorder Risk Can Start in Either Stock Location The alert should fire when shelf or warehouse quantity drops too low.

In this workbook, each product has a shelf quantity and a warehouse stock value. The challenge is to classify each product row, then complete the audit section so the sheet shows the total SKU count and how many items need reorder attention.

  • Shelf quantity and warehouse stock are checked separately.
  • Either low value should be enough to mark the row.
  • The summary should count the flagged reorder rows.

That gives the inventory team a focused action list. Instead of scanning both quantity columns manually, they can filter or review the rows that already carry the reorder status.

Related Challenge to This Problem

  • Sum Values by Status
  • Calculate Category Discounts
  • Flag High-Value Customers

How We Solve It

The main rule is simple. A row should say REORDER if shelf stock is below 5 or warehouse stock is below 10. Since either condition is enough, OR is the right helper.

Method 1: IF with OR

IF OR Illustration
Method 1: Flag the row when either stock location drops below its threshold.

This is the method the challenge expects. OR checks both thresholds, and IF turns the result into a readable status. If either location is too low, the formula returns REORDER. Otherwise it returns OK.

This solves the actual stock problem because a shortage in either location is enough to create risk. The formula does not wait for both numbers to be low. It flags the row as soon as one side drops past its threshold.

=IF(OR(B2 < 5, C2 < 10), "REORDER", "OK")

Method 2: Use MIN to spot the weakest point

MIN Threshold Illustration
Method 2: Focus on the weakest stock point across two locations.

If your rule is based on the smallest number across locations, MIN is a clean shortcut. It is not the validator pattern here, but it is useful when the business only cares about the lowest available quantity regardless of where it sits.

This solves a slightly different inventory problem, where the weakest stock point drives the decision by itself. It is useful when the two locations are treated as one combined supply risk instead of having separate thresholds.

=IF(MIN(B2:C2) < 5, "CRITICAL", "STABLE")

Method 3: Grade stock with IFS

IFS Grading Illustration
Method 3: Use several labels when you want more detail than one reorder flag.

Sometimes one alert is not enough. IFS can create levels such as out of stock, low, and healthy. That gives more detail to planners, even though this challenge keeps the final output to just REORDER or OK.

This solves the planning problem when the team needs more than a yes-or-no warning. It turns one stock check into a clearer status scale, which can help decide which items need urgent action first.

=IFS(B2=0, "OUT", B2<5, "LOW", TRUE, "GOOD")

Function Explanation

1. OR

OR returns TRUE if at least one condition is true. That fits this stock rule perfectly because a problem in either location should trigger the alert.

This is the key business logic. The item does not need both shelf and warehouse quantities to be low before it becomes risky.

Learn more this functionOR

2. IF

IF converts the logical test into the visible label the team will actually read. It is what turns TRUE and FALSE into REORDER and OK.

That label is what makes the worksheet actionable. A planner can filter reorder rows without interpreting the threshold math every time.

Learn more this functionIF

3. COUNTIF

COUNTIF finishes the worksheet by counting how many rows ended up with the reorder label. That gives a quick summary without scanning the whole table again.

The summary count also helps communicate workload. It tells the inventory team how many products need attention right now.

Learn more this functionCOUNTIF

In a real inventory file, the thresholds may vary by product. This challenge uses fixed rules so the formula stays focused on the logic pattern itself.

Try Yourself

Check each stock row against the shelf and warehouse thresholds, mark the items that need reordering, and then finish the summary so the worksheet shows the total number of SKUs and how many were flagged.

1
Objective #1
Cell: D2-D6

In Column D, assign a replenish status based on whether either stock location falls below its reorder threshold.

2
Objective #2
Cell: B9

In cell B9, count the total number of SKUs in your inventory list.

3
Objective #3
Cell: B10

In cell B10, count how many items were flagged for reorder.

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

Let others know about this challenge!

Related Challenges
Lookup
#31
Check if Date is a Holiday

An Excel schedule includes service dates, and you need to flag which ones fall on holidays before payroll or planning is reviewed.

Easy
Analysis
#32
Identify Top 3 Sales Performers

An Excel revenue report needs quick ranking, and you need to mark the top three performers and summarize their combined results.

Hard
Analysis
#33
Calculate Discount Based on Category

An Excel sales sheet uses different discount rates by category, and you need to apply the right rate and total each discount amount.

Easy
Cleanup
#34
Remove Non-Numeric Characters

An Excel price column contains mixed text, and you need to strip out non-numeric characters so the values can be calculated.

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