C
clk
Hi. I have a database that I am using to manipulate data to export
to
another program. I import a text file, make modification and then
export another text file with all the modifications. One thing that
happens is the original file that is imported may contain duplicate
records.
Below is a scenario that exists.
Point_Name x1 y1 x2
y2
1 123 465
2 888 999
2 777 000
4 456 566
What I need is below. The end result should be that Point_Name "2"
get combined with the other Point_Name "2". The top one leaves the x1/
y1 coordinates alone but the second Point-Name2 x1/y1 coordinates get
placed in x2/y2 fields.
Point_Name x1 y1 x2 y2
1 123 465
2 888 999 777
000
4 456 566
I hope this makes sense. x2 and y2 are blank unless there are two
identical
Point-Names. Any help would be greatly appreciated.
Thank you.
to
another program. I import a text file, make modification and then
export another text file with all the modifications. One thing that
happens is the original file that is imported may contain duplicate
records.
Below is a scenario that exists.
Point_Name x1 y1 x2
y2
1 123 465
2 888 999
2 777 000
4 456 566
What I need is below. The end result should be that Point_Name "2"
get combined with the other Point_Name "2". The top one leaves the x1/
y1 coordinates alone but the second Point-Name2 x1/y1 coordinates get
placed in x2/y2 fields.
Point_Name x1 y1 x2 y2
1 123 465
2 888 999 777
000
4 456 566
I hope this makes sense. x2 and y2 are blank unless there are two
identical
Point-Names. Any help would be greatly appreciated.
Thank you.