Hello
I have a group on table pimary key but i want to reverse the order of records
for example
Table 1
RowId Name Dob SSN
1 Test,Name 5/1/14 123232555
2 Test,Name2 7/1/14 231224444
3 Test,Name3 9/1/14 100000000
I have group on RowId and would like to print in reverse order
RowId Name Dob SSN
3 Test,Name3 9/1/14 1000000000
2 Test,Name2 7/1/14 231224444
1 Test,Name 5/1/14 123232555
Regards