Conditional Logicbeginner
Nested IF grade scale
=IF(B2>=90,"A",IF(B2>=80,"B",IF(B2>=70,"C",IF(B2>=60,"D","F"))))
Build a monthly reporting sheet that totals one category without creating a pivot table first.
Step-by-step instructions
Point SUMIFS at the amount column you want to total.
Add a category criterion so only the selected category is included.
Add a start-date and next-month boundary so only one month of rows qualifies.
Example data
| Category | Date | Amount |
|---|---|---|
| Software | 2026-01-03 | 1200 |
| Software | 2026-01-19 | 980 |
| Services | 2026-01-22 | 450 |
Common mistakes
Total is zero
Your dates may be stored as text instead of true date values, which prevents the date criteria from matching.
FAQ
Why use a start date and next-month date?
It creates a clean month window that includes every date in the target month without worrying about month lengths.
Related how-to guides