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

Load Script Error - One Field 2 times

Hi,

why is here an error and how can i fix it?

2017-07-06_16h30_10.jpg

regards,

Sam

2 Replies
sunny_talwar
MVP
MVP

TOTAL Qualifier is not available in the script... to do this, you can try this

Table:

LOAD sDate,

     Product,

     Number,

     Store

FROM .....;

Left Join (Table)

LOAD Max(sDate) as Max

Resident Table;

FinalTable:

LOAD *,

      If(sDate = Max, Number) as New_Number

Resident Table;

DROP Table Table;

jmvilaplanap
Specialist
Specialist

Whats the error description in the console?