Some colleagues and I can't quite get this one.
We have some travel flow data between places such as:
A B 40
B C 50
F Y 9
B A 2
T R 65
Y F 33
Each of the end points (A, B, etc) is in a column, and then the third column is the number of people that moved between those points. What we need to to is combine the flows so that we can total them between points without regard to direction (i.e. we want A B = 42). In the end we want one list with the unique endpoints and the flows (and it doesn't matter which endpoint comes first). Any ideas? It seems like this should be easy - and maybe it is - but we can't get the answer (note - there are about 5,000 lines of data so it is tough to do by hand).
We have some travel flow data between places such as:
A B 40
B C 50
F Y 9
B A 2
T R 65
Y F 33
Each of the end points (A, B, etc) is in a column, and then the third column is the number of people that moved between those points. What we need to to is combine the flows so that we can total them between points without regard to direction (i.e. we want A B = 42). In the end we want one list with the unique endpoints and the flows (and it doesn't matter which endpoint comes first). Any ideas? It seems like this should be easy - and maybe it is - but we can't get the answer (note - there are about 5,000 lines of data so it is tough to do by hand).