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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

summerise table

I have this table

Tabelle.jpg

and in the first column is the Key, which repeats 3times (because of 3 concatenated tables). In the other columns there is just one value for the keys.

Now I want to summerise this table to 1 row, with all the values in the columns

My script looks like this

Table:

load Key,

     Column1,

     Column2 

resident Temp;

What do I have to add to Summerise the table?  I tried group by but I get error messages

Thanks a lot in advanced

Thomas

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Table:

load Key,

     sum(Column1),

     sum(Column2) 

resident Table_temp

GRUP BY  Key;

(DROP TABLE Table_temp// if you don't need anymore)

View solution in original post

2 Replies
Not applicable
Author

Table:

load Key,

     sum(Column1),

     sum(Column2) 

resident Table_temp

GRUP BY  Key;

(DROP TABLE Table_temp// if you don't need anymore)

Not applicable
Author

Thanks a lot, this is perfectly working