Form Report [servoy 6.1.2]

Hi all,

here my scenario:

I have a form base on a table like this:

group|name|surname|age

with occurrences:

people|marco|rossi|27
people|riccardo|bianchi|36
disney|donald|donald|70
disney|goofie|goofie|70

Now, I would to make a report like:

'Group' people
  'name'|'surname'|'age'
  marco rossi 27
  riccardo bianchi 36

'Group' disney
 'name'|'surname'|'age'
  donald donald 70
  goofie goofie 70

To do this:
1 - I’ve put an header part in wich I’ve put a label that says “Here the report”.
2 - I’ve put a ‘leading sub summary ON group’ In wich I’ve put the field ‘group’ and the column’s labels:

'Group' disney
 'name'|'surname'|'age'

3 - I’ve put a body part in wich I’ve put the fields:

 marco rossi 27
  riccardo bianchi 36

But the result I obtain, is a form with the header part and the body part. the others are ignored:

    "Here the report".
  marco    rossi     27
  riccardo bianchi 36
  donald   donald  70
  goofie    goofie  70

Am I forgetting anything?

Thanks

Riccardo

You need to do 2 more steps:

  1. You need to sort by the subsummary group field. From your steps below it does not look like you have done so.
  2. To see the results, you have to print/print preview the form. Servoy does not support having “live” sub summary forms like Filemaker. (if that was what you are expecting)

Thanks!

I was forgetting to sort by subsummary group field! (your point 1)

Riccardo