If the intent is to aort by name, but uniquely qualify each name, then lbass's method is correct, however the post asked for grouping by ID, which is also a sortation.
Of course a formula concatenating the two will work, as would creating 2 groupsin that instance.
bmarks: In original order would mean that you'd need to sort the data on the database by the name and then the ID. Lbass's method is correct, and commonly suggested, I just took issue to the poor description of the requirements, it should have stated that they want the report grouped by the name, yet preserve the uniqueness based on the id to llow for duplicate names.
-k