Finding distance between multiple coordinates relative to a single coordinate

GreatMacca

New Member
Joined
Jan 2, 2015
Messages
1
So I have over 100 points that I need to find the distance to from a single Cartesian point. I was hoping someone out there could help me find a way to only have to put the coordinates in and have Excel work out the answers. I have done a little bit of work with Excel but am totally lost here. Thank you in advance.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
<title>Excel Jeanie HTML</title>Hi, Try this

Sheet1


ABC
1XY
200Origin
3122.236068
42-12.236068
5366.708204
6488.944272
7-5-1011.18034
861213.41641
971415.65248
108-1617.88854

<tbody>
</tbody>

Formeln der Tabelle
ZelleFormel
C3=SQRT(($A$2-A3)^2+($B$2-B3)^2)
C4=SQRT(($A$2-A4)^2+($B$2-B4)^2)
C5=SQRT(($A$2-A5)^2+($B$2-B5)^2)
C6=SQRT(($A$2-A6)^2+($B$2-B6)^2)
C7=SQRT(($A$2-A7)^2+($B$2-B7)^2)
C8=SQRT(($A$2-A8)^2+($B$2-B8)^2)
C9=SQRT(($A$2-A9)^2+($B$2-B9)^2)
C10=SQRT(($A$2-A10)^2+($B$2-B10)^2)

<tbody>
</tbody>

<tbody>
</tbody>


Distance Between Two points = SQRT((X2-X1)^2+(Y2-Y1)^2)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,182
Messages
6,129,360
Members
449,506
Latest member
nomvula

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