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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load Excel file and combining records

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?

Knipsel.JPG

2 Replies
sunny_talwar

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;

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Create a Table object with OrderID, Part and Customers as dimensions and add two measures: sum(Qty) and sum(Value).


talk is cheap, supply exceeds demand