Hi,
I have the following Credit Rating Table
I'm trying to get this formula working:
=SMALL(IFERROR(M9:P9,""),ROW(1:1))
Where currently: M9 is =INDEX(Credit_Ratings,MATCH(M6,Table1[[#All],[RTG_SP]],0),MATCH("#",Table1[#Headers],0))
N9=INDEX(Credit_Ratings,MATCH(N6,Table1[[#All],[RTG_DBRS]],0),MATCH("#",Table1[#Headers],0))
O9=INDEX(Credit_Ratings,MATCH(O6,Table1[[#All],[RTG_MOODY]],0),MATCH("#",Table1[#Headers],0))
P9=INDEX(Credit_Ratings,MATCH(P6,Table1[[#All],[RTG_FITCH]],0),MATCH("#",Table1[#Headers],0))
But I do not want to have a reference to the M9:P9 cells or any other cells for a matter of fact.. So I would like to do something that incorporates the INDEX MATCH formulas within the initial SMALL formula so that I can know which is the smallest #s just from referring the letters.
Could I do something like the following?
{=SMALL(IFERROR({(INDEX(Credit_Ratings,MATCH(M6,Table1[[#All],[RTG_SP]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(N6,Table1[[#All],[RTG_DBRS]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(O6,Table1[[#All],[RTG_MOODY]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(P6,Table1[[#All],[RTG_FITCH]],0),MATCH("#",Table1[#Headers],0)))},""),ROW(1:1))}
Right now, when I'm trying this, it is giving me the "There's a problem with this formula." popup.
Thanks a lot for your help!
Best regard,
Gabriel
I have the following Credit Rating Table
# | RTG_SP | RTG_DBRS | RTG_MOODY | RTG_FITCH |
100 | AAA | AAA | Aaa | AAA |
95 | AA+ | AAH | Aa1 | AA+ |
90 | AA | AA | Aa2 | AA |
85 | AA- | AAL | Aa3 | AA- |
80 | A+ | AH | A1 | A+ |
75 | A | A | A2 | A |
70 | A- | AL | A3 | A- |
65 | BBB+ | BBBH | Baa1 | BBB+ |
60 | BBB | BBB | Baa2 | BBB |
55 | BBB- | BBBL | Baa3 | BBB- |
50 | BB+ | BBH | Ba1 | BB+ |
45 | BB | BB | Ba2 | BB |
40 | BB- | BBL | Ba3 | BB- |
35 | B+ | BH | B1 | B+ |
30 | B | B | B2 | B |
25 | B- | BL | B3 | B- |
20 | CCC+ | CCCH | Caa1 | CCC |
15 | CCC | CCC | Caa2 | CCC |
10 | CCC- | CCCL | Caa3 | CCC |
5 | CC | CC | Ca | DDD |
0 | D | D | C | DD |
I'm trying to get this formula working:
=SMALL(IFERROR(M9:P9,""),ROW(1:1))
Where currently: M9 is =INDEX(Credit_Ratings,MATCH(M6,Table1[[#All],[RTG_SP]],0),MATCH("#",Table1[#Headers],0))
N9=INDEX(Credit_Ratings,MATCH(N6,Table1[[#All],[RTG_DBRS]],0),MATCH("#",Table1[#Headers],0))
O9=INDEX(Credit_Ratings,MATCH(O6,Table1[[#All],[RTG_MOODY]],0),MATCH("#",Table1[#Headers],0))
P9=INDEX(Credit_Ratings,MATCH(P6,Table1[[#All],[RTG_FITCH]],0),MATCH("#",Table1[#Headers],0))
But I do not want to have a reference to the M9:P9 cells or any other cells for a matter of fact.. So I would like to do something that incorporates the INDEX MATCH formulas within the initial SMALL formula so that I can know which is the smallest #s just from referring the letters.
Could I do something like the following?
{=SMALL(IFERROR({(INDEX(Credit_Ratings,MATCH(M6,Table1[[#All],[RTG_SP]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(N6,Table1[[#All],[RTG_DBRS]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(O6,Table1[[#All],[RTG_MOODY]],0),MATCH("#",Table1[#Headers],0))),(INDEX(Credit_Ratings,MATCH(P6,Table1[[#All],[RTG_FITCH]],0),MATCH("#",Table1[#Headers],0)))},""),ROW(1:1))}
Right now, when I'm trying this, it is giving me the "There's a problem with this formula." popup.
Thanks a lot for your help!
Best regard,
Gabriel