I have two SUMIF formulas. Both do what I expect them tobut I need to combine them together.
The first formula gets all values from Column I where a specific word (eg "Word") is written in Column F:
=sumif(F:F; "Word"; I:I)The second formula gets all values from Column I where the dates in Column B are equal to or greater than January 1, 2024.
=sumif(B:B; ">=2024-01-01"; I:I)I want to combine these two formulas. I tried several approaches from Google searches but keep getting errors saying that my attempt contains too many arguments.
How can I combine these two formulas?