Attribute table help

766
3
11-07-2011 12:17 PM
JeremySkaw
New Contributor
Of my rows of data, I found one that was out of order.  I need it to be roughly 20 rows above where it currently is, how do I go about moving it?
0 Kudos
3 Replies
markdenil
Occasional Contributor III
If, say, row 40 should be in row 20:
select rows 1- 19: write them to a new data set (A)
select row 40: export to a data set (B)
select rows 20 - 39: export to a data set (C)
select rows > 40: export to a data set (D)

append data sets B, C, & D to data set A
0 Kudos
JoshuaCrough
New Contributor III
If you want to sort it alphabetically/numerically you can try this tool. I haven't, but noticed it the other day: http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=977F8B9B-1422-2418-A012-7EFD1...
0 Kudos
JeremySkaw
New Contributor
If, say, row 40 should be in row 20:
select rows 1- 19: write them to a new data set (A)
select row 40: export to a data set (B)
select rows 20 - 39: export to a data set (C)
select rows > 40: export to a data set (D)

append data sets B, C, & D to data set A




Sweet thanks. that helped!!
0 Kudos