Hi everyone,
I would like to create a report witch shows me the statistics of my categories.
My setup is as follows:
I have a table “clients” with all details including a reference (entity = n:n) to the table “category”. The field cat_name is a multi-enum-field in table clients.
So far this is working and the results are shown correctly.
E.g. in clients:
Name 1, Address, Category: red, blue
Name 2, Address, Category: yellow
Name 3, Address, Category: blue, yellow, red
Category:
Blue
Red
Yellow
White
Green
…
The report should look like this:
There is no way to select the group field “category”!?
How can I create a report like this?
Thanks in advance
Ari
I would like to create a report witch shows me the statistics of my categories.
My setup is as follows:
I have a table “clients” with all details including a reference (entity = n:n) to the table “category”. The field cat_name is a multi-enum-field in table clients.
So far this is working and the results are shown correctly.
E.g. in clients:
Name 1, Address, Category: red, blue
Name 2, Address, Category: yellow
Name 3, Address, Category: blue, yellow, red
Category:
Blue
Red
Yellow
White
Green
…
The report should look like this:
category | Sum |
red | 2 |
blue | 2 |
yellow | 2 |
White | 0 |
green | 0 |
How can I create a report like this?
Thanks in advance
Ari
Comment