Match 2 values in a different sheet with page number to find return value.

sneakyla

New Member
Joined
Aug 11, 2021
Messages
23
Office Version
  1. 2016
Platform
  1. Windows
Hello!

Can anyone help me find the right formula for what I need?

I have multiple sheets that has a continuous name starting from 100 to 200.

I'm currently using a formula to show the sheet name inside the work page in one of the cell. (see below in 2nd sheet corner "sheet 100" is the sheet name and so on)

I'm trying to use 1 sheet to input all the information and have the rest of the sheets from 100 to 200 receive information. This sheet is called INFO SHEET

I need it to match the sheet name, the fruit and size and return value.

EXAMPLES BELOW.
______________________________________________________________________________________

INFO SHEET BELOW.

sheet 100sheet 101sheet 102
applesmall
2​
1​
7​
applemedium
4​
3​
9​
applelarge
orangesmall
orangemedium
orangelarge9
pearsmall
pearmedium
pearlarge


2ND SHEET BELOW (WHERE IT NEEDS THE FORMULA)

sheet 100
smallmediumlarge
apple
(need formula to find value of 2 from info sheet)​
(need formula to find value of 4 from info sheet)​
orange
(need formula to find value of 9 from info sheet)​
pear

Thank you!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
should the sheet 100 be in a different position OR do you change that entry to lookup a different result

A grid lookup may work - i'll put something together assuming Column F - row 1 (F1) has the sheet name
 
Upvote 0
here

=INDEX(Info!$C$3:$E$11,MATCH($A5&B$4,Info!$A$3:$A$11&Info!$B$3:$B$11,0),MATCH(out!$F$2,Info!$C$2:$E$2,0))

will work with 2016 version , with later version 365 - maybe able to use Filter .....

Book3
ABCDEF
1
2sheet 100
3
4smallmediumlarge
5apple240
6orange009
7pear000
8
out
Cell Formulas
RangeFormula
B5:D7B5=INDEX(Info!$C$3:$E$11,MATCH($A5&B$4,Info!$A$3:$A$11&Info!$B$3:$B$11,0),MATCH(out!$F$2,Info!$C$2:$E$2,0))


Book3
ABCDE
1
2sheet 100sheet 101sheet 102
3applesmall217
4applemedium439
5applelarge
6orangesmall
7orangemedium
8orangelarge9
9pearsmall
10pearmedium
11pearlarge
Info


I have added a dropbox link - will only be available for a few days
 
Upvote 0
here

=INDEX(Info!$C$3:$E$11,MATCH($A5&B$4,Info!$A$3:$A$11&Info!$B$3:$B$11,0),MATCH(out!$F$2,Info!$C$2:$E$2,0))

will work with 2016 version , with later version 365 - maybe able to use Filter .....

Book3
ABCDEF
1
2sheet 100
3
4smallmediumlarge
5apple240
6orange009
7pear000
8
out
Cell Formulas
RangeFormula
B5:D7B5=INDEX(Info!$C$3:$E$11,MATCH($A5&B$4,Info!$A$3:$A$11&Info!$B$3:$B$11,0),MATCH(out!$F$2,Info!$C$2:$E$2,0))


Book3
ABCDE
1
2sheet 100sheet 101sheet 102
3applesmall217
4applemedium439
5applelarge
6orangesmall
7orangemedium
8orangelarge9
9pearsmall
10pearmedium
11pearlarge
Info


I have added a dropbox link - will only be available for a few days
It worked!

Thank you so much! Cheers!
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,243
Members
449,075
Latest member
staticfluids

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