Hi folks,
I have a few co-users of a worksheet that uses FILTER and SEQUENCE, but as they are on older versions of Excel they lose these results.
The worksheet has something similar to below where,
I thought of looping it in a vba/udf, but it seems like there should be a simpler way using an existing set of functions.
I have a few co-users of a worksheet that uses FILTER and SEQUENCE, but as they are on older versions of Excel they lose these results.
The worksheet has something similar to below where,
- For a given array (B2:E13) of values
- Return a dynamic list of Column and Row "Header" Values based on the cut-off entered (G3).
I thought of looping it in a vba/udf, but it seems like there should be a simpler way using an existing set of functions.
Book1 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | |||
1 | Diego | Jeff | Sandy | Mark | Desired Result | |||||||
2 | January | 45 | 29 | 72 | 36 | >Cutoff | Column | Row | ||||
3 | February | 51 | 77 | 4 | 89 | 88 | Deigo | July | ||||
4 | March | 78 | 89 | 78 | 65 | Jeff | March | |||||
5 | April | 19 | 35 | 39 | 39 | Jeff | September | |||||
6 | May | 8 | 13 | 78 | 61 | Jeff | December | |||||
7 | June | 76 | 48 | 20 | 74 | Mark | February | |||||
8 | July | 94 | 0 | 78 | 25 | |||||||
9 | August | 18 | 13 | 8 | 34 | |||||||
10 | September | 85 | 95 | 52 | 46 | |||||||
11 | October | 7 | 16 | 51 | 52 | |||||||
12 | November | 28 | 67 | 27 | 38 | |||||||
13 | December | 24 | 92 | 13 | 74 | |||||||
14 | ||||||||||||
15 | ||||||||||||
Sheet1 |