I want to find the distance between 2 points with the same ID. Here is the illustration: I want to find the distance between A and A" and also B and B".
Point Distance (Analysis) does not do this kind of processing.
Solved! Go to Solution.
The IDs of paired points are exactly the same, aren't they? If yes, just try to build two-point lines for each of the paired points by grouping input points by IDs. The lengths of these lines are the distance you are looking for.
The IDs of paired points are exactly the same, aren't they? If yes, just try to build two-point lines for each of the paired points by grouping input points by IDs. The lengths of these lines are the distance you are looking for.
hi @SeaRM yes. you are correct.. i just tried it and it works as intended . thanks mate