Find the Lowest Value in a Category
You have amounts in one column and categories in another, and you need the lowest amount for one specific category — the smallest Sales deal, the cheapest supplier quote, the earliest deadline per project.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
MINIFS is the mirror image of MAXIFS: it scans the amounts in column C, keeps only the rows where column A says Sales, and returns the smallest of those. The range to minimize comes first, then pairs of criteria range and criteria — add more pairs to narrow further, like MINIFS(C:C,A:A,"Sales",C:C,">0") to ignore zero rows. Because dates are numbers, MINIFS also finds the EARLIEST date per category, which makes it handy for "next deadline per project" columns. It works in Google Sheets and Excel 2019 or newer, and returns 0 when nothing matches.
When to use it
Use this to find the cheapest quote per supplier, the lowest score per team, or the earliest due date per project. Combined with MAXIFS you can show each category's full range in two columns.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08