Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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