Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am quit new at QlikSense and I am struggling with a grouping issue.
My data is in Excel and I need to joing some records with identical values.
On each item where OrderID and part are equal I need to make the sum of Qty and value.
Below you can see in the first part the Excle sheet and in the second part youy see the result I need.
Can anybody assist?
Try this:
Table:
LOAD OrderID,
Part,
Qty,
Value,
Customer
FROM yourSoruce;
Table1:
NoConcatenate
LOAD OrderID,
Part,
Sum(Qty) as Qty,
Sum(Value) as Value,
Customer
Resident Table
Group By OrderID, Part, Customer;
Drop Table Table;
Create a Table object with OrderID, Part and Customers as dimensions and add two measures: sum(Qty) and sum(Value).