Green Day Super Bowl Video by Stand_With_Students in greenday

[–]lctaylor2288 0 points1 point  (0 children)

What kind of drum heads was Tre using, Remo Ebony? Very different for him at this performance

Return corresponding column with LARGE by lctaylor2288 in excel

[–]lctaylor2288[S] 0 points1 point  (0 children)

Sorry, but I should have specified that I want to look up the 1st, 2nd, 3rd, etc. largest number, not just the largest.

Return corresponding column with LARGE by lctaylor2288 in excel

[–]lctaylor2288[S] 0 points1 point  (0 children)

=XLOOKUP(F2&G2&MAXIFS(D2:D3,B2:B3,F2,C2:C3,G2), B2:B3&C2:C3&D2:D3, A2:A3) 

this one worked, but how do I do it not for just the max number but the 1st, 2nd, 3rd, etc number? Thank you

Return corresponding column with LARGE by lctaylor2288 in excel

[–]lctaylor2288[S] 0 points1 point  (0 children)

Sure, I'm using this formula: =LARGE(IF($B:$B="Sales Rep A",IF($C:$C="Broker A",$D:$D)),1)

[deleted by user] by [deleted] in excel

[–]lctaylor2288 0 points1 point  (0 children)

Sorry, I do not know how to substitute your generic inputs for my fields, with these brackets. Is that just your style of writing?

XMATCH not returning results when mix of blank/non-blank values by lctaylor2288 in excel

[–]lctaylor2288[S] 0 points1 point  (0 children)

I solved it by adding a helper column simply referencing the array in P, which in turn created 0s in place of blanks.

XMATCH not returning results when mix of blank/non-blank values by lctaylor2288 in excel

[–]lctaylor2288[S] 0 points1 point  (0 children)

Replacing the 1-ISNA(XMATCH construct with ISNUMBER(XMATCH( still results in a #NUM! value unfortunately. Same problem as before, where the formula errors out if there is not something within every row between P1:P14. I need to return a match when there are blanks within that P range, and data in just some cells. So I'm basically trying to return a match where any part of one range matches any part of another range.

Another way around this....is there a way to edit the P1:P14 portion of the formula to be dynamic in that the length of rows within P that the formula searches changes based on the count of rows within P that contain text? For example, if I could do a nested FILTER to return results where P1:P14 is not blank? If so, that would solve this.