Hi Anonymus,
using the GO-Sales package:
Goal:
- We want to count distinct all product lines and all product types and we want to receive the sum of all distinct occurrences.
Steps:
- Create a three-column list containing three data elements:
1. count(distinct [Product Line]) as "cdProductiLine", using aggregation method "count unique elements"
2. count(distinct [Product Type]) as "csProductType", using aggregation method "count unique elements"
3. [cdProductLine] + [cdProductType] contains the total result, using aggregation method "sum"
Hope it works for you this way!
Best Regards,
Bjarne