IF / Inventory Manager

Trigger Reorder Alert

I need a formula that displays 'Order Now' if the quantity in stock is less than 10, otherwise displays 'Stock OK'.

formula.xlsx
=IF(B2<10, "Order Now", "Stock OK")

How it works: This formula uses the IF function to perform a logical test. `B2<10` checks if the quantity in stock (cell B2) is less than 10. If this condition is TRUE, the formula returns 'Order Now'. If the condition is FALSE (meaning the quantity is 10 or more), it returns 'Stock OK'. This provides an immediate visual alert for items requiring attention.

Data Setup

Product ID Quantity in Stock
P001 15
P002 5
P003 20
P004 9
P005 10

Step-by-Step Guide

1

Open your Excel spreadsheet containing your inventory data.

2

Identify the column with 'Quantity in Stock' (e.g., Column B).

3

Select the first empty cell in the row where you want the reorder status to appear (e.g., C2, assuming your data starts from row 2).

4

Type the formula: `=IF(B2<10, "Order Now", "Stock OK")`

5

Press Enter. The cell will now display 'Order Now' or 'Stock OK' based on the quantity in B2.

6

Drag the fill handle (the small square at the bottom-right corner of cell C2) down to apply the formula to the rest of your inventory items.

Explore More