Forum Discussion
Lkiia
Aug 20, 2023Copper Contributor
Using Formula MONTH() in SUMIFS()
My simplified table looks like this - Date Category Amount 8/1/2023 Housing $100.00 8/1/2023 Groceries $200.00 9/1/2023 Groceries $100.00 9/1/2023 Utilites $200.00 I am...
Jlkirk
Mar 31, 2024Copper Contributor
what if there were various words in the cells under the Category heading in each cell instead of just "Groceries"? Can you still isolate Groceries? If so, how? Ive seen "*...*" used in sumif and sumifs formulas
HansVogelaar
Apr 01, 2024MVP
Using the example from higher up:
=SUMIFS(C2:C1000, B2:B1000, "*Groceries*")
and
=SUMPRODUCT(C2:C1000, (MONTH(A2:A1000)=8)*ISNUMBER(SEARCH("Groceries", B2:B1000)))
- JlkirkApr 01, 2024Copper ContributorThank you