Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Vaku1606
Contributor III
Contributor III

Count

Hello, 

I have production data per customer and per item and per date. 

Would like to count the number of items produced per month(and year) per customer (to take into account only items with production qty <>0). To get something like this

  Month
Customer Jan Feb March
CC 13 15 15
Heineken 5 3 12
Pepsi 5 3 1

 

Could you please help?

 

Thanks in advance and regards

Labels (4)
2 Replies
BrunPierre
Partner - Master
Partner - Master

Perhaps at the front end as below

Count(Aggr(Count({<qty={">0"}>}DISTINCT [Number of Items]),Month,Year,Customer)

MarcoWedel

did you try with a pivot table?