I have a data set where each row represents a sale made by an agent. The columns consist of dates as well as an answer to a question (yes, no, N/A).
I would like to write a formula that yields EVERY agent who answered "no" to the question between two dates. Is this possible?
In my formula, Sheet1!B:B is the column containing the names of the agents. This is the column from which I would like the return value to come.
Sheet1!E:E is the column that contains the dates.
Sheet1!N:N is the column that contains the "No" N2 that I want to match
B2 is the start date
B3 is the end date
I have tried this formula but only yield one result of an error... Please advise
=ArrayFormula(INDEX(Sheet1!B:B, MATCH(1(Sheet1!$N$2=Sheet1!N:N)*($B$2>=Sheet1!$E:$E)*($B$3<=Sheet1!$E:$E,2)))
Bookmarks