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: 
Not applicable

Load script error

Hey guys, could use a little guidance on preparing load files, happy to read through some resources as well.

Just began using Qlik sense and i'm trying to do a simple transformation of data columns upon loading a data file.

Input:

Revenue

Country

Orders

Output:

Average order value of each country

Current attempt:

Load ((Sum([Revenue with shipping]),[Country Code])/(sum([unique orders]))) as AOV

Thanks!

1 Reply
sunny_talwar
MVP
MVP

Try something like this:

Input:

LOAD Revenue,

Country,

Orders

FROM Source;

Join(Input)

LOAD Country,

          Avg(Orders) as [Avg Orders]

Resident Input

Group By Country;