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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SUMS ON SCRIPT

I have a question, Can i do some sum on the script instead on the Set Analysis?, example i have a pivot table chart and i need to do a lot of sum with the info in the chart, it is possible to do it on the script to let less charge on the chart???

Regards

Carlos

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can create new summed fields in the script and use the GROUP by clause to specify at what group you want to sum. Something like:

LOAD Month, sum(Sales) as "Monthly Sales"
RESIDENT Sales
GROUP BY Month
;

-Rob

View solution in original post

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can create new summed fields in the script and use the GROUP by clause to specify at what group you want to sum. Something like:

LOAD Month, sum(Sales) as "Monthly Sales"
RESIDENT Sales
GROUP BY Month
;

-Rob