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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hi, am not able to implement SUM() in resident load..?

Hi All,

Please help me in this..

5 Replies
alexandros17
Partner - Champion III
Partner - Champion III

If you use sum you must use group  by clause ....

MK_QSL
MVP
MVP

Temp:

Load

     Customer,

     Sales

From TableName;

NoConcatenate
Final:

Load

     Customer,

     SUM(Sales) as TotalSales

Resident Temp

Group By Customer;

Drop table Temp;

Not applicable
Author

Hi thnx for reply,

Yes i have used group by clause also..

Not applicable
Author

Hi All,

Thanx for your replies,

may be my question is not very clear i believe.

am creating one NEW_TABLE by using multiple RESIDENT LOADS.

i have used 4 resident loads, in the creation of NEW_TABLE I have already used Group by clause on one sum() function.

i am facing problem in implementing one AGGR() function..

is there any limitation in sing AGR() in resident load..?

senpradip007
Specialist III
Specialist III

Could you please upload sample qvw?