Greenbehindthecells
Board Regular
- Joined
- May 9, 2023
- Messages
- 50
- Office Version
- 365
- Platform
- Windows
Hello,
As you have imagined, I am having an issue with something I am trying to do in Excel. I am working on a 'dashboard'. I need to find the 'place ranking' for the rate I am returning from a cell. I tried an IFS OR formula, but I think I am approaching this incorrectly.
The individual formulas work, but I need this consolidated into one cell for this project. The screenshot shows E2:M2 are the individual formulas that show the 'Place' as 9th, 8th, 7th…etc that I want to consolidate into one cell. What is frustrating is recall doing this 3-4 years ago for a different company and I cant locate or remember how I got it to work. Can anyone point me in the right direction?
As you have imagined, I am having an issue with something I am trying to do in Excel. I am working on a 'dashboard'. I need to find the 'place ranking' for the rate I am returning from a cell. I tried an IFS OR formula, but I think I am approaching this incorrectly.
The individual formulas work, but I need this consolidated into one cell for this project. The screenshot shows E2:M2 are the individual formulas that show the 'Place' as 9th, 8th, 7th…etc that I want to consolidate into one cell. What is frustrating is recall doing this 3-4 years ago for a different company and I cant locate or remember how I got it to work. Can anyone point me in the right direction?
Places.xlsx | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | |||
1 | Num | Den | Rate | 9th | 8th | 7th | 6th | 5th | 4th | 3rd | 2nd | 1st | I am not able to combine this into a single IF OR statement, it could be the wrong approach? | ||||||
2 | BC | 370 | 370 | 100.00% | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | 1st | #N/A | |||||
3 | CC | 100 | 370 | 27.03% | 9th | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | #N/A | ||||||
4 | CH | 200 | 370 | 54.05% | #N/A | #N/A | #N/A | #N/A | #N/A | 4th | #N/A | #N/A | #N/A | ||||||
5 | CO | 200 | 370 | 54.05% | #N/A | #N/A | #N/A | 6th | #N/A | #N/A | #N/A | #N/A | #N/A | ||||||
6 | E2:M2 are the individual formulas that show the 'Place' as 9th, 8th, 7th…etc | ||||||||||||||||||
7 | I do not want 9 different cells. | ||||||||||||||||||
8 | |||||||||||||||||||
9 | 9th | 8th | 7th | 6th | 5th | 4th | 3rd | 2nd | 1st | ||||||||||
10 | BC | 52.77% | 58.70% | 63.87% | 65.82% | 68.95% | 70.74% | 73.26% | 78.09% | 79.37% | |||||||||
11 | CC | 34.31% | 40.15% | 50.61% | 53.80% | 59.17% | 64.48% | 67.16% | 72.38% | 76.12% | |||||||||
12 | CH | 29.77% | 32.50% | 37.58% | 40.35% | 44.54% | 51.43% | 55.95% | 64.52% | 70.27% | |||||||||
13 | CO | 34.57% | 39.05% | 49.39% | 52.80% | 60.10% | 64.75% | 66.10% | 71.34% | 74.32% | |||||||||
14 | |||||||||||||||||||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D2:D5 | D2 | =B2/C2 |
E2:E5 | E2 | =IFS($D2<=B10,$B$9) |
F2:L5 | F2 | =IFS(AND($D2>=C10,$D2<D10),C$9) |
M2:M5 | M2 | =IFS(AND($D2>=J10),$J$9) |
O2 | O2 | =IFS(OR($D2<=B10),$B$9),IFS(OR($D2>=C10,$D2<D10),C$9),IFS(OR($D2>=D10,$D2<E10),D$9),IFS(OR($D2>=E10,$D2<F10),E$9),IFS(OR($D2>=F10,$D2<G10),F$9),IFS(OR($D2>=G10,$D2<H10),G$9),IFS(OR($D2>=H10,$D2<I10),H$9),IFS(OR($D2>=I10,$D2<J10),I$9),IFS(OR($D2>=J10),$J$9) |