Skip to main content
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?