Preacherman771
New Member
- Joined
- Jun 15, 2021
- Messages
- 46
- Office Version
- 365
- Platform
- Windows
In the attached screenshot,
Y48:Y55 is the grouping of duplicates from another table
Z48:Z55 is the corresponding names of each duplicate from the other table
AA48:AA55 is the total duplicates of each group from the other table
AB48:AB55 is the conditional calculated results for this table
AC48:AC55 Ranking of AB based on number in column AA
AD48:AD55 Index Z based on ranking
AE48:AE55 Index AB based on ranking
In the total project, the data in each table/worksheet, including the current one, changes based on the data entered on the primary table on a linked worksheet. What I am looking for is a way to write the RANK.EQ formula in AC48:AC45 based on AA48:AA55 as the quantities change in the future. For example, with the current numbers, based on AA48 (3) the 1st formula would be, RANK.EQ(AB48,$AB$48:$AB$50,0)+COUNTIF(AB$48:AB48,AB48)-1. AA49 (3) RANK.EQ(AB51,$AB$51:$AB$53,0)+. . . ), AA50 (2), RANK.EQ(AB54,$AB$54:$AB$55,0)+. . . ). But if AA48 changes to let's say 2, the formula would also change to RANK.EQ(AB48,$AB$48:$AB$49,0)+ . . . ), etc. As the numbers in column AA change, is there a way to write the formula which would also adjust based on the numbers in column AA?
Y48:Y55 is the grouping of duplicates from another table
Z48:Z55 is the corresponding names of each duplicate from the other table
AA48:AA55 is the total duplicates of each group from the other table
AB48:AB55 is the conditional calculated results for this table
AC48:AC55 Ranking of AB based on number in column AA
AD48:AD55 Index Z based on ranking
AE48:AE55 Index AB based on ranking
In the total project, the data in each table/worksheet, including the current one, changes based on the data entered on the primary table on a linked worksheet. What I am looking for is a way to write the RANK.EQ formula in AC48:AC45 based on AA48:AA55 as the quantities change in the future. For example, with the current numbers, based on AA48 (3) the 1st formula would be, RANK.EQ(AB48,$AB$48:$AB$50,0)+COUNTIF(AB$48:AB48,AB48)-1. AA49 (3) RANK.EQ(AB51,$AB$51:$AB$53,0)+. . . ), AA50 (2), RANK.EQ(AB54,$AB$54:$AB$55,0)+. . . ). But if AA48 changes to let's say 2, the formula would also change to RANK.EQ(AB48,$AB$48:$AB$49,0)+ . . . ), etc. As the numbers in column AA change, is there a way to write the formula which would also adjust based on the numbers in column AA?
NFL 2021-2022 Standings (Template).xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Y | Z | AA | AB | AC | AD | AE | AF | |||
47 | Group #1 | |||||||||
48 | a | PIT | 3 | 0.667 | 1 | |||||
49 | a | BAL | 3 | 0.667 | 2 | |||||
50 | a | CLE | 2 | 0.625 | 3 | |||||
51 | b | IND | 0.500 | 4 | ||||||
52 | b | TEN | 0.667 | 5 | ||||||
53 | b | MIA | 0.750 | 6 | ||||||
54 | c | NE | 0.000 | 7 | ||||||
55 | c | KC | 0.000 | 8 | ||||||
Calc_Ties (Conf) |
Cell Formulas | ||
---|---|---|
Range | Formula | |
Y47 | Y47 | ="Group #"&$K$7 |
AA48:AA55 | AA48 | =IF(COUNTIF($Y$48:$Y$55,J7)<>0,COUNTIF($Y$48:$Y$55,J7),"") |
AB48:AB55 | AB48 | =IFERROR(INDEX($DC$36:$DC$106,MATCH(AH28,$CL$36:$CL$106,0)),"") |
Z48:Z53 | Z48 | =IFERROR(INDEX($L$7:$L$22,SMALL(IF($P$7:$P$22=1,ROW($P$7:$P$22)-ROW($P$7)+1),K7)),"") |