Help - Multiple Criterias using a range

soph12081

Board Regular
Joined
Oct 6, 2014
Messages
56
Hello

I think I have over analysed this and I think it's probably simple but any help would be appreciated.

Basically I need my data table to pull a figure into column AJ "% increase" based on the % in column AQ "PIR" and the PR number in column AH.

An example: -

AQ2=99.43%
AH2=2

It should return 1%.

Data table looks like this: -

PR<8081-9091-100101-110>110
56.0%5.0%4.0%3.0%2.0%
45.0%4.0%3.0%2.0%1.0%
34.0%3.0%2.0%1.0%0.0%
23.0%2.0%1.0%0.0%0.0%
10.0%0.0%0.0%0.0%0.0%

<colgroup><col><col><col span="4"></colgroup><tbody>
</tbody>


Thanks in advance! :)
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
I had to change your text headings for PR to a single maximum for that range, then this would work:

ABCDEFGAGAHAIAQ
1ReturnAHAQ
23.00%23.00%
3
4PR up to80%90%100%110%999%
556.00%5.00%4.00%3.00%2.00%
645.00%4.00%3.00%2.00%1.00%
734.00%3.00%2.00%1.00%0.00%
823.00%2.00%1.00%0.00%0.00%
910.00%0.00%0.00%0.00%0.00%

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
soph12081

Worksheet Formulas
CellFormula
G2=INDEX($B$5:$F$9,MATCH(AH2,$A$5:$A$9,0),AGGREGATE(15,6,COLUMN($B$4:$F$4)-1/(AQ2<=$B$4:$F$4),1))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,036
Messages
6,122,794
Members
449,095
Latest member
m_smith_solihull

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