Google-sheets – Using a FILTER function in conjunction with other functions

formulasgoogle sheets

sample sheet

I am looking for a function to display the Title (from column B) that has the lowest numerical average in column (found from column G). I have that already in the form of

=INDEX(B2:G,match(min(G2:G),G2:G,FALSE),1)

but I would like to further specify it so that it only grabs the Title with the lowest average, that is also of a certain Category. So let's say I'd want a function to search for the Title with the lowest average only in Category A, I would want that to display "B" instead of "K", which the above function outputs.

Best Answer

Do unmerge I2:I. And fill all corresponding rows with category name to use FILTER.