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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Sameer9585
Creator II
Creator II

Sales State wise in Load Script

Hi,

I have provided the data set which contains  ID,State,Sales and I need Sum of Sales State wise from the load script only.

Sheet 2 from the data set to be focused.

Thanks in advance,

1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Load
     State,
     Sum(Sales) as MonthlySales
Group By State;
Load
     *
From <>;

View solution in original post

1 Reply
tresB
Champion III
Champion III

Load
     State,
     Sum(Sales) as MonthlySales
Group By State;
Load
     *
From <>;