So I have a query that puts out the following
ID Name Birthday
---- ------- ------------
1 John 9/22/1982
1 Sandra 2/1/1981
2 Steven 3/2/1984
2 Stephanie 5/14/1983
3 Kevin 8/15/1983
3 Kelly 9/12/1985
What i want to do is group by id:
+ 1
John 9/22/1982
Sandra 2/1/1981
+ 2
Steven 3/2/1984
Stephanie 5/14/1983
- 3
Obvisouly the +/- represent the toggle for the grouping. My current issue is that I'm only getting 1 record for every group. Here are my current settings
Not really sure what to do or where I should look.
When you only have a single row inside your group, it indicates that you aren't grouping on the field ID.
I followed these steps to create the table you described:
Right click on the Row Groups "(Details)" area and add a parent group:
In the properties for "(Details)", set the visibility toggle information:
If you want to try to fix the table that you have started creating, look at the group properties for the "ID" row group (if created) and ensure that it's grouping on the field ID. If it doesn't exist, create the parent group to the details as described above.