FormulaCraft

SUMIFS

Sum values that meet multiple conditions at once.

SUMIFS extends SUMIF to several criteria — total amounts that match a category AND a date range AND a region, for instance.

Excel
=SUMIFS(C:C, A:A, "Sales", B:B, ">="&DATE(2026,1,1))
Google Sheets
=SUMIFS(C:C, A:A, "Sales", B:B, ">="&DATE(2026,1,1))

How it works

  1. 1C:C is the range to sum.
  2. 2A:A = "Sales" is the first condition.
  3. 3B:B >= 1 Jan 2026 is the second condition.

Need a version for your data?

Try: “Sum column C where A is Sales and the date in B is on or after Jan 1 2026

Related