Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
jade
Contributor III
Contributor III

Count product by value list per week

jade_0-1703645844622.png

Hi, could someone help me in counting the product by value list per week found? I want the result would be like this:

jade_1-1703646325084.png

 

Labels (3)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

Load  Valuelist,Product,DateFound,Week(DateFound) as ProductWeek

From XyzSource;

 

Then use a Pivot table

RowDimensions: Valuelist,Product

ColumnDimension: ProductWeek

Measure: Count(Product)

 

 

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

Load  Valuelist,Product,DateFound,Week(DateFound) as ProductWeek

From XyzSource;

 

Then use a Pivot table

RowDimensions: Valuelist,Product

ColumnDimension: ProductWeek

Measure: Count(Product)

 

 

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
anat
Master
Master

Load  Valuelist,

Product,

DateFound,

'products in week'&Week(DateFound) as ProductWeek

From source