Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Mattia
Creator II
Creator II

How can i embed an expression in the script?

Hi Guys,

how can i embed the expression Date(Date#([DATA_CONTATTO],'DDMMYYYY'),'DD/MM/YYYY') in the script?

My script is the following:

LOAD

...

[@26:33] as DATA_CONTATTO,

...

FROM

...

Please, show me because i'm a newbie.

Thanks,

Mattia

Labels (3)
1 Solution

Accepted Solutions
Frank_Hartmann
Master II
Master II

try like this:

Load 
...
Date(Date#([@26:33],'DDMMYYYY'),'DD/MM/YYYY') as DATA_CONTATTO,
...
FROM

View solution in original post

2 Replies
Frank_Hartmann
Master II
Master II

try like this:

Load 
...
Date(Date#([@26:33],'DDMMYYYY'),'DD/MM/YYYY') as DATA_CONTATTO,
...
FROM
Mattia
Creator II
Creator II
Author

Thank you, Frank!

It works!!!

Mattia