Proportion based on percentile

00alex00

New Member
Joined
Jun 18, 2015
Messages
40
Hello all,

I have two series of value I need to the proportion to figure out which is the value I should put based on my old valuations.

I am going to explain better.

Based on past series I have the below distribution:

A52100,00%
B5195,24%
C4390,48%
D4085,71%
E2180,95%
F1776,19%
G1571,43%
H1166,67%
I761,90%
L557,14%
M247,62%
N247,62%
O19,52%
P19,52%
Q19,52%
R19,52%
S19,52%
T19,52%
U19,52%
V19,52%
Z00,00%

<colgroup><col style="width: 100px"><col width="100"><col width="100"></colgroup><tbody>
</tbody>

While the new value are:

18100,00%
1695,00%
1590,00%
1485,00%
1375,00%
1375,00%
1065,00%
1065,00%
945,00%
945,00%
945,00%
945,00%
835,00%
835,00%
715,00%
715,00%
715,00%
715,00%
60,00%
60,00%
60,00%

<colgroup><col style="width: 100px"><col width="100"></colgroup><tbody>
</tbody>

I have to assign an old "valuation" based on the percentile.

Example: the new value of 10 is at 65% of the distribution this means that based on the old valuation should between 7 and 11. rounded 11.

another one: the new valuation of 15 it stays at 90% this means that based on the old valuation I should put a value of 43.

Do you have a quick idea of how I can build a formula to get this?

Thank you very much
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Assuming your first table is in Range of A2: D22 and the other table is on the same sheet from range G2:H22, you can apply below Array formula to cell I2 get required result

=IFERROR(INDEX($C$2:$C$22,MATCH(2,(LEFT(H2,FIND(",",H2,1)-1)+0<=LEFT($D$2:$D$21,FIND(",",$D$2:$D$21,1)-1)+0)+(LEFT(H2,FIND(",",H2,1)-1)+0>LEFT($D$3:$D$22,FIND(",",$D$3:$D$22,1)-1)+0),0)),$C$22)

Please note that this is an array formula and hence you need to press Ctrl+Shift+Enter instead on only Enter. drag formula to remaining Cells to complete result.
 
Upvote 0

Forum statistics

Threads
1,214,872
Messages
6,122,025
Members
449,060
Latest member
LinusJE

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top