Help with formula to find matching coordinate values, make new list

Slewis

New Member
Joined
Jan 19, 2018
Messages
1
I have two lists of coordinates, X,Y,Z. One list is significantly longer than the other as has additional non matching X,Y values. The Z values are purposely different. At the end of the day I want to compare the different Z values between matching X,Y coordinates

What I want to do is find the matching coordinates X,Y and create a new list of only the matching X,Y, values but keeping the different Z values.

Coords1Coords2New List
XYZXYZXYZ1Z2
-0.8750.250.0092-0.8750.250.0127-0.8750.250.00920.0127
-0.8750.3750.00765002000.002-0.8750.3750.00760.0191
-0.8750.50.01653001000.05-0.8750.50.01650.0172
-0.8750.3750.0191
-0.8750.50.0172
<colgroup><col width="72" style="width: 54pt;" span="3"> <col width="33" style="width: 25pt; mso-width-source: userset; mso-width-alt: 1056;"> <col width="72" style="width: 54pt;" span="3"> <col width="36" style="width: 27pt; mso-width-source: userset; mso-width-alt: 1152;"> <col width="72" style="width: 54pt;" span="4"> <tbody> </tbody>
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
If that is the case, you only need to repeat Coords1 in columns I:K and add this in column L:
Code:
=IFERROR(INDEX($G$3:$G$10,MATCH($I3&"¬"&$J3,INDEX($E$3:$E$10&"¬"&$F$3:$F$10,),0)),"-")
If not, it may be worth providing some further explanation of the content of your lists.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,859
Messages
6,121,963
Members
449,059
Latest member
oculus

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