There seems to be lots of information on how to use SUMIFS with a CONTAINS criteria, referring to another sheet.
Here is my formula on Sheet 1:
=SUMIFS({Total Cost - Final Event Space Cost}, {Requested Event Date}, {Requested Event Date} > TODAY(), {Requested Event Date}, {Requested Event Date} >= TODAY(-365))
- Total Cost - Final Event Space Cost is the range of cells to be summed on Sheet 2
- Requested Event Date is a date field on Sheet 2 that will be evaluated against criterion
- The next section is evaluating the Requested Event Date to determine if a date is in the last 365 days.
I would like to add criterion, evaluating a status field on Sheet 2 called "Event Status", where the status contains the word "Scheduled".
How would I add a CONTAINS or HAS condition in the SUMIFS?