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

Looks right, what is the issue?

swuehl
MVP
MVP

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