Which function? Biggest distance to the Nearest city ...
Carrying on with your suggestion to use a 2-d table, with your data in
columns A, B and C starting on row 4 (insert blank rows above if
necessary), then <copy the data, click on D1 and use Edit | Paste
Special | Transpose (check) | OK then <Esc - this will give you a
copy of the towns and xy coordinates in the top 3 rows. Cell D4 will
thus represent the distance from town-1 to town-1, D5 from town-2 to
town-1 etc.
You can apply your formula to each cell, something like:
=(($B4-D$2)^2 +($C4-D$3)^2)^0.5
then copy this across and down. Then you can use MAX to find the
largest value, and possibly use it within an INDEX/MATCH function to
give you the names of the towns which are furthest apart.
Hope this helps.
Pete
On Oct 11, 9:37 am, aneudul wrote:
So, I need to know the biggest distance between EACH cell in the list
and the other ones ...
I suspect that I need to make a two-dimensional cross-table, with the
same list as column headers and row headers? (sorry about my english,
I have a Dutch version of the software).
Am I searching in the right direction?
I would appreciate any help, since I need to resolve this issue very
soon.
Thanks in advance!
Marcos
|