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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
govindvasu
Contributor III
Contributor III

Sum() in load script

Hi,

I am trying to implement sum functionality in the data load editor, when loading the data it is throwing the invalid expression error. 

Here is the script i am running

Data_total:

load

     emp_id,

     key,

    amount,

     sum(amount) as Sum_amount

resident Data

where Key = 0

and Date >= addmonths(today(), -12)

group by emp_id;

 

 

 

Labels (4)
10 Replies
govindvasu
Contributor III
Contributor III
Author

Thanks this works