Formula help

dani1

Board Regular
Joined
Mar 23, 2010
Messages
90
Data Table
[TABLE="width: 223"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD]Tier[/TD]
[TD]Salary[/TD]
[/TR]
[TR]
[TD]officer[/TD]
[TD="align: right"]10000[/TD]
[/TR]
[TR]
[TD]Management Associate[/TD]
[TD="align: right"]30000[/TD]
[/TR]
[TR]
[TD]Deputy Manager[/TD]
[TD="align: right"]50000[/TD]
[/TR]
[TR]
[TD]Senior Manager[/TD]
[TD="align: right"]120000[/TD]
[/TR]
[TR]
[TD]Manager Level 2[/TD]
[TD="align: right"]80000[/TD]
[/TR]
[TR]
[TD]Manager Level 1[/TD]
[TD="align: right"]64000[/TD]
[/TR]
[TR]
[TD]Assistant Manager[/TD]
[TD="align: right"]25000[/TD]
[/TR]
[TR]
[TD]General Manager[/TD]
[TD="align: right"]160000[/TD]
[/TR]
[TR]
[TD]Senior General Manager[/TD]
[TD="align: right"]145000[/TD]
[/TR]
[TR]
[TD]Management Associate[/TD]
[TD="align: right"]35000[/TD]
[/TR]
</tbody>[/TABLE]


Criteria Table

[TABLE="width: 287"]
<colgroup><col><col span="2"></colgroup><tbody>[TR]
[TD]Cadre[/TD]
[TD]Min[/TD]
[TD]Max[/TD]
[/TR]
[TR]
[TD]Senior General Manager[/TD]
[TD="align: right"]140000[/TD]
[TD="align: right"]260000[/TD]
[/TR]
[TR]
[TD]General Manager[/TD]
[TD="align: right"]110000[/TD]
[TD="align: right"]150000[/TD]
[/TR]
[TR]
[TD]Senior Manager[/TD]
[TD="align: right"]90000[/TD]
[TD="align: right"]125000[/TD]
[/TR]
[TR]
[TD]Manager Level 1[/TD]
[TD="align: right"]65000[/TD]
[TD="align: right"]100000[/TD]
[/TR]
[TR]
[TD]Manager Level 2[/TD]
[TD="align: right"]50000[/TD]
[TD="align: right"]75000[/TD]
[/TR]
[TR]
[TD]Deputy Manager[/TD]
[TD="align: right"]40000[/TD]
[TD="align: right"]60000[/TD]
[/TR]
[TR]
[TD]Assistant Manager[/TD]
[TD="align: right"]30000[/TD]
[TD="align: right"]45000[/TD]
[/TR]
[TR]
[TD]Management Associate[/TD]
[TD="align: right"]15000[/TD]
[TD="align: right"]30000[/TD]
[/TR]
[TR]
[TD]Officer[/TD]
[TD="align: right"]10000[/TD]
[TD="align: right"]20000[/TD]
[/TR]
</tbody>[/TABLE]


i have two table above i want formula in 1st table according to criteria for example
if officer comes with salary range 10,000 to 20,000 it must show "in range" if greater than 20,000 then it must show "High" and if it shows less than 10000 than it must show "Low" and so on for management associate and others tier.


Please help me in case of confusion please let me know
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
try this


Excel 2012
ABCD
1Data Table
2TierSalary
3officer10000In Range
4Management Associate30000In Range
5Deputy Manager50000In Range
6Senior Manager120000In Range
7Manager Level 280000High
8Manager Level 164000Low
9Assistant Manager25000Low
10General Manager160000High
11Senior General Manager145000In Range
12Management Associate35000High
13
14
15Criteria Table
16
17CadreMinMax
18Senior General Manager140000260000
19General Manager110000150000
20Senior Manager90000125000
21Manager Level 165000100000
22Manager Level 25000075000
23Deputy Manager4000060000
24Assistant Manager3000045000
25Management Associate1500030000
26Officer1000020000
Sheet1
Cell Formulas
RangeFormula
D3=IF(B3$B$18:$B$26,MATCH(A3,$A$18:$A$26,0)),"Low",IF(B3>INDEX($C$18:$C$26,MATCH(A3,$A$18:$A$26,0)),"High","In Range"))
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,207
Members
452,618
Latest member
Tam84

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