MATCHING a range in a different worksheet

hsandeep

Well-known Member
Joined
Dec 6, 2008
Messages
1,213
Office Version
  1. 2010
Platform
  1. Windows
  2. Mobile
I have data in ws with tab named H53 in range B2:F16. In another ws (with tab named Pr) in cell AAE38, I want to get corresponding F of H53 MATCHING $AP38 (of ws with tab named Pr)
How to accomplish. Thanks in advance
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Could you post an example? It's a little difficult to understand what you're looking for.
 
Upvote 0
Could you post an example? It's a little difficult to understand what you're looking for.
@PeteWright
In G column of Pr ws, I want to fetch F of H53 ws MATCHING non contiguos rows of D (of Pr ws) with contiguos rows of B (of H53 ws)
ws H53
Referencing.xlsx
BCDEF
241600999
341700888
441800777
541900111
642000222
742100444
842200555
9423001561
104240010
114250020
124260030
134270040
144280050
154290060
164300070
H53

ws Pr
Referencing.xlsx
DEFG
2F of H53
3
441900111
542000222
642100444
7
842200555
9423001561
10
114240010
124250020
Pr
 
Upvote 0
you can do a simple vlookup
Excel Formula:
=VLOOKUP(D4,'H53'!$B$2:$F$16,5,FALSE)
you might need to adjust the 'H53'!$B$2:$F$16 part to your full lookup range
 
Upvote 0
Solution
you can do a simple vlookup
Excel Formula:
=VLOOKUP(D4,'H53'!$B$2:$F$16,5,FALSE)
you might need to adjust the 'H53'!$B$2:$F$16 part to your full lookup range
@ExceLoki Thanks for your time & efforts. Is it compulsory to adjust?
 
Upvote 0
if your lookup data range is bigger than the range in the above formula, and you want the rest of the range looked at for matches.... yes.
 
Upvote 0
if your lookup data range is bigger than the range in the above formula, and you want the rest of the range looked at for matches.... yes.
My total data/range is as posted in thread #3.
 
Upvote 0

Forum statistics

Threads
1,215,108
Messages
6,123,133
Members
449,098
Latest member
Doanvanhieu

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