My report exhibits the total rows existing in a group, like the example below
NAME | CLIENT_ID | PRODUCT |
john | 100 | spoon |
--------------------------------------------
mary | 111 | dress |
-------------------------------------------
john | 100 | pan |
-------------------------------------------
Total Rows: 3
How can i count only once the rows with the same id and display it in the report? example below
NAME | CLIENT_ID | PRODUCT |
john | 100 | spoon |
--------------------------------------------
mary | 111 | dress |
-------------------------------------------
john | 100 | pan |
-------------------------------------------
Total Rows: 2
Thank you jgust!!