I have a problem with sorting and grouping. I have a report with a group defined. Consider that there are two different fields I would like to sort by. One is a unique text string, lets call it "Name." The other is not unique and is a number, let's call it "Value."<br><br>Right clicking on the group, and selecting "Change Group..." I'm presented with the choice of which field to sort the group by. When I choose "Name," the group sorts fine, and all the records appear properly ordered. Like so:<br><br><FONT FACE=monospace><br>Fred 5<br>Joan 2<br>John 5<br>Lisa 1<br>Mary 2<br></font><br><br>When I choose "Value," however, I get only some of the records, because it only shows one of each of the numeric values. That is, several different Names have the same Value, but when sorting by Value, it only shows one record for each value, even though the Values aren't neccessarily distinct. For the same data as above, I'd only get:<br><br><FONT FACE=monospace><br>Lisa 1<br>Joan 2<br>Fred 5<br></font><br><br>What I want, however, is something like this:<br><br><FONT FACE=monospace><br>Lisa 1<br>Joan 2<br>Mary 2<br>Fred 5<br>John 5<br></font><br><br>How can I sort the group by Value (recall, a non-distinct numeric value) but still have it display all the records? I notice that when I sort "in original order" I see all the records, but when using "ascending" or "descending" I get only one record per Value. "In original order" doesn't do me any good, though, since the data isn't sorted to begin with. I understand that it displays the group for each change of value of the specified field, but is there a way to get it to display the group for every record, no matter what?<br><br>Thank you sincerely for any advice you can offer me.