Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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