Result from multiple criteria and range between two values

rythmic_flow

New Member
Joined
Jan 16, 2019
Messages
17
Please can I get help retrieving the Code from Table 2 into Table 1 by searching the "Resource Cost" value.

There are certain criteria/conditions:

1. Group Code must be the same
2. Location code must be the same
3. Resource cost value must fall within the Min and Max Banding.

For example, Table 1 cell A3 (£38.56) should fit the criteria of Table 2 Row 3, as the Group Code and Location are matching, and the value is between £1 and £64.05. The result would be 101.

This is a simplified table, but we have a proprietary coding system that matches several thousand different product costs via a unique code. Sometimes we receive external data and we have to get these matched up and only get the Group Code to start with. I then need to match them by cost banding and obtain the full Code.

Each group will always have five codes, from 1-5. For example, Group 150 will consist of the codes 151, 152, 153, 154, 155, with each one having a min and max cost.

Thanks in advance for the help!
 

Attachments

  • Table 1.PNG
    Table 1.PNG
    23.4 KB · Views: 11
  • Table 2.PNG
    Table 2.PNG
    20.1 KB · Views: 11

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Does this work - untested (been a while since I did Excel)?
in A3
=SUMPRODUCT((J$3:J$1000=C3)*(M$3:M$1000=B3)*(O$3:O$1000>=A3)*(P$3:P$1000<=A3)*(L$3:L$1000))
and copy down column A
 
Upvote 1
Solution
It's returning 0 for me.

I've updated the screen shot below with the column letters.

This is how I arranged the formula:

=SUMPRODUCT((G$3:G$1000=C3)*(I$3:I$1000=B3)*(K$3:K$1000>=A3)*(L$3:L$1000<=A3)*(H$3:H$1000))
 

Attachments

  • Table 1 & 2.PNG
    Table 1 & 2.PNG
    59.1 KB · Views: 6
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

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