Reputation: 23
I know this is possible using a combination of probably =FILTER, ARRAYFORMULA and probably QUERY but hopefully, the examples will explain it better than words can.
Effectively, I have an output (the top table) and I want the formula that will bring back the dates each person has a mismatch (bottom table)
I hope that's clear enough.
Upvotes: 2
Views: 26
Reputation: 1
try:
=ARRAYFORMULA(QUERY({A2:A10, TRIM(SPLIT(TRANSPOSE(QUERY(TRANSPOSE(
IF(B2:G10="mismatch", B1:G1, )),,999^99)), " "))}, "where Col2 is not null", ))
Upvotes: 1