Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, could someone help me in counting the product by value list per week found? I want the result would be like this:
Load Valuelist,Product,DateFound,Week(DateFound) as ProductWeek
From XyzSource;
Then use a Pivot table
RowDimensions: Valuelist,Product
ColumnDimension: ProductWeek
Measure: Count(Product)
Load Valuelist,Product,DateFound,Week(DateFound) as ProductWeek
From XyzSource;
Then use a Pivot table
RowDimensions: Valuelist,Product
ColumnDimension: ProductWeek
Measure: Count(Product)
Load Valuelist,
Product,
DateFound,
'products in week'&Week(DateFound) as ProductWeek
From source