Calculate the distance between two 2d co-ordinates

  • Thread starter Thread starter Vlad
  • Start date Start date
V

Vlad

I have two co-ordinates that are given in x,y format.

E.g.
x , y
1 , 1
1 , 5

Is there an excel function or vba function that can be used to
calculate the distance between the two co-ordinates?

Cheers
 
Hello,
if 1,1 are in A2,B2
if 1,5 are in A3,B3
A distance could be : =((A2-A3)^2+(B2-B3)^2)^0.5

"Vlad" <[email protected]> a écrit dans le message de groupe de
discussion :
(e-mail address removed)...
 
Back
Top