Hi
The best way is to create a query which gets all the fields of the table. Then make a grouping report and open the Report directly from the form by using the code.
DoCmd.OpenReport _
"MyReport", acPreview, "", "[Forms]![MyForm]![MyID]=[MyTable]![MyID]"
Just replace the...