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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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

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