View Single Post
  #2   Report Post  
Bill Martin -- (Remove NOSPAM from address)
 
Posts: n/a
Default

Christina wrote:
Is there a function or some other way to determine Euclidian distance using
Excel? Thanks. _c


You just plug the normal equations into Excel. For 2 dimensional space
for example:

d = sqrt((x2-x1)^2 + (y2-y1)^2)

Bill