INDEX,Match or LOOKUP Function

Buddhaboy32

New Member
Joined
Apr 15, 2020
Messages
8
Office Version
  1. 2010
Platform
  1. Windows
Hi All,

I am busy with a work sheet that gives me the following info using the Index,Match function.

excel.jpg


However, I am hitting a brick wall with Rows 6 and 7 in the above image.

Below you can see my spreadsheet

excel 1.jpg


What I wish to accomplish is the following:

If in image 1, where code = FCT-80-1-CER, and my Bar = 3,4 then my L/Min must = 1,00

If I change my "code" in image 1, i.e Code = FCT-80-6-CER, and my "BAR" changes to 6,2 then my "L/Min must = 3,20

So, basically I need the "Code" to stay the same, but be able to change the "BARS" which in turn change the "L/Min".

Example: FCT-80-0,5-CER = 0,56 L/Min @ 3,4 Bars
FCT-80-0,5-CER = 0,84 L/Min @ 9 Bars

FCT-80-4-CER = 2,53 L/Min @ 6,2 Bars
FCT-80-4-CER = 3,00 L/Min @ 9 Bars

NEED HELP PLEASE.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
@Buddhaboy32
Assuming your lookup data to be in Sheet12 range A3:L11 (Edit to suit). then something like the below.

Book1
BCDEFGHIJKL
33.44.86.27.6910.4
4Lilac0.56
58259376White0.75
68259377BlueMAG-CH 1FCT-80-1-CER199
78259378BlackMAG-CH 2FCT-80-2-CER1.28
88259379OrangeMAG-CH 3FCT-80-3-CER1.5
98259380RedMAG-CH 4FCT-80-4-CER1.94
108259381GreenMAG-CH 5FCT-80-5-CER2.13
Sheet12


Book1
AB
1Category
2CodeFCT-80-1-CER
3ColourBlue
4TypeMAG-CH 1
5P/N8259377
6Bar3.4
7L/Min1
8Price
Sheet11
Cell Formulas
RangeFormula
B3B3=INDEX(Sheet12!$C$3:$C$11,MATCH($B$2,Sheet12!$E$3:$E$11,0),1)
B4B4=INDEX(Sheet12!$D$3:$D$11,MATCH($B$2,Sheet12!$E$3:$E$11,0),1)
B5B5=INDEX(Sheet12!$B$3:$B$11,MATCH($B$2,Sheet12!$E$3:$E$11,0),1)
B7B7=INDEX(Sheet12!$G$3:$L$11,MATCH($B$2,Sheet12!$E$3:$E$11,0),MATCH($B$6,Sheet12!$G$3:$LE$3,0))


Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,497
Members
448,967
Latest member
visheshkotha

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