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 - change field value

Hi,

how can i change the value in a loading script like this?

2017-01-17_20h02_35.jpg

I try it by this way, but it shows that´s wrong:

tbl_sumApr:

LOAD

    sDate as newDate(['01.04.2017']),

    Product as newProduct,

    Sales as newSales

Resident tbl_jan;

regards,

sam

3 Replies
sunny_talwar
MVP
MVP

Looks right, what is the issue?

swuehl
Champion III
Champion III

Try

Date(Makedate(2017,4,1),'DD.MM.YYYY') as  newDate,

Anonymous
Not applicable
Author

Thanks!

This works fine:

MakeDate(2017,4,1) as newDate

2017-01-17_21h30_31.jpg