I'm attempting to filter a column based on two different criteria. One of the criteria is static (matching a single number in a specific column) and the other criteria is dynamic (matching an array of numbers to a column).
I can pull the criteria separately, but when I attempt to combine them to filter the results further I get an error.
Pull All Of ID 43079's Units:
Pull Last 20 Unique Dates for 43079:
Filter 43079's Units By Last 20 Unique Dates (broken):
Any assistance is appreciated. I'm sure it's a simple fix, I just can't wrap my head around it.
I can pull the criteria separately, but when I attempt to combine them to filter the results further I get an error.
Pull All Of ID 43079's Units:
Excel Formula:
=FILTER(C:C,B:B=43079)
Excel Formula:
=INDEX(UNIQUE(FILTER(A:A,B:B=43079)),SEQUENCE(20))
Excel Formula:
=FILTER(C:C,(B:B=43079)*(INDEX(UNIQUE(FILTER(A:A,B:B=43079)),SEQUENCE(20))))
Any assistance is appreciated. I'm sure it's a simple fix, I just can't wrap my head around it.