Need to match multiple cells

stags81

New Member
Joined
Dec 10, 2010
Messages
19
Hello,

I'm looking to create a formula or VBA function in which multiple conditions are met. Here are the columns (Row 1 will be for headers) and the type of data in each column. I'm starting with B2 as an example, but I'm looking to paste the same formula throughout column B.

A2. Transaction #
B2. (will contain the formula)
F2. number
G2. number stored as text
H2. number
I2. Transaction #
N2. number
O2. number stored as text
P2. number

Basically, in column B I need to input a formula that searches the range of N2:P65000 (i.e. the end) to find a matching row in which F2=the value in N, G2= the value in O, and H2=the value in P. If a row is found, it would return the value in column I. For now, I can return "ERROR" if there aren't any matching rows found in that range.

Can you assist? Thanks!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
assumes that your VALUE in column I is a NUMBER...

it also assumes that there will be only one row out there that matches all criteria

=SUMPRODUCT(--(N2:N65000=F2),--(O2:O65000=G2),--(P2:P65000=H2),I2:I65000)
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

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