I have this formula that pulls all requests for February (well, every month, but lets start with February) from 2 sheets. But now I need it to also only pull the count for only the items that are also considered from "meetings" under the "type" column. Basically answering the question: how many of these line items happened in february and came from meetings?
This formula works but doesn't filter by type:
=COUNTIF([Request Date]:[Request Date], IFERROR(MONTH(@cell), 0) = 2) + COUNTIF({Completed Follow Ups Range 1}, IFERROR(MONTH(@cell), 0) = 2)
This one doesn't work but shows what I'm trying to do, but it doesn't work, any ideas what I'm doing wrong?
=COUNTIFS ([Request Date]:[Request Date],[type]:[type], FIND("meeting", @cell) IFERROR(MONTH(@cell), 0) = 2) + COUNTIF({Completed Follow Ups Range 1}, IFERROR(MONTH(@cell), 0) = 2)