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: 
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
tresesco
MVP
MVP

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

View solution in original post

1 Reply
tresesco
MVP
MVP

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