Please help. I have looked online and can't find info for formula

letterly

New Member
Joined
Jul 5, 2023
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hello,

So lets call the data below is on Sheet 1. I would like to create a formula next to each serial number and FIND serial number on Sheet 2. Then, I would then like to compare the values left of the serial numbers of both sheets and return a value of Match or No Match on Sheet 1. I don't If that can be done with one formula or multiple formulas in multiple columns on Sheet 1. Please help if you can.
1688584506872.png
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
This can be achieved using XLOOKUP like below -

Ifs(Xlookup(your lookup on Sheet 2)=Cell.Address to Match,"Match", True,"Not Match")

This would need 1 column per checked Match
 
Upvote 0
This can be achieved using XLOOKUP like below -

Ifs(Xlookup(your lookup on Sheet 2)=Cell.Address to Match,"Match", True,"Not Match")

This would need 1 column per checked Match
I want to match all five columns AFTER the serial number is found. The MATCH depends on result from find formula. I need this to be dynamic since because of sorting and data input, location of serial number will always change.
 
Upvote 0
I want to match all five columns AFTER the serial number is found. The MATCH depends on result from find formula. I need this to be dynamic since because of sorting and data input, location of serial number will always change.
I have answered for the same only. Create 5 helper columns on sheet 1 and do as I suggested. Once you have data in 5 helper columns use as you want. It's dynamic as you want...
 
Upvote 0
Hello,

So lets call the data below is on Sheet 1. I would like to create a formula next to each serial number and FIND serial number on Sheet 2. Then, I would then like to compare the values left of the serial numbers of both sheets and return a value of Match or No Match on Sheet 1. I don't If that can be done with one formula or multiple formulas in multiple columns on Sheet 1. Please help if you can.
View attachment 94775
I want to match all five columns AFTER the serial number is found. The MATCH depends on result from find formula. I need this to be dynamic since because of sorting and data input, location of serial number will always change.
This is what I have so far and tried. I don't know how to make the formula on right dynamic and change range based on result of formula to left.
1688586890724.png
 
Upvote 0
Try:
Sheet 1
Book1
ABCDE
1Name Model LocationVersionSerial No.
2Carson3400 Colorado1.23621120103Match
3John3400 Colorado1.23620420917Match
4Amy3400 Colorado1.23620430170Match
5Jack3400 Colorado1.23620431115No Match
6Beth3400 Colorado1.23620431186No Match
7Rose3400 Arizona1.23621180016Match
8Jason3400 Arizona1.23636023456Match
Sheet1
Cell Formulas
RangeFormula
E2:E8E2=IF(PRODUCT(--(FILTER(Sheet2!$A$2:$D$8,D2=Sheet2!$D$2:$D$8,"No Match")=A2:D2))=1,"Match","No Match")


Sheet 2
Book1
ABCD
1Name Model LocationVersionSerial No.
2Carson3400 Colorado1.23621120103
3Sam3400 Colorado1.23620431115
4Amy3400 Colorado1.23620430170
5John3400 Colorado1.23620420917
6Beth3444 Colorado1.23620431186
7Jason3400 Arizona1.23636023456
8Rose3400 Arizona1.23621180016
Sheet2
 
Upvote 0
AhoyNC,

Thank you. The formula doesn't do anything. It treats it like text.
 
Upvote 0
Not sure what you mean by "treats it like text". What does "doesn't do anything" mean, do you get a blank, an error or what? Is the example I posted what your data looks like on sheet 1 & 2?
Did you change ranges to match your data?
 
Upvote 0
Not sure what you mean by "treats it like text". What does "doesn't do anything" mean, do you get a blank, an error or what? Is the example I posted what your data looks like on sheet 1 & 2?
Did you change ranges to match your data?
It returns a blank cell. It doesn't return n/a , name, or any other typical error message.
 
Upvote 0

Forum statistics

Threads
1,216,027
Messages
6,128,366
Members
449,444
Latest member
abitrandom82

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