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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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

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?