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
- ID row is the parent row
- Name and Birthday are the child row.
- Dataset results show the way I had above
- I followed these steps throughout from here
Not really sure what to do or where I should look.