Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
dolly777
Contributor III
Contributor III

How to add now function in line load table in qlikview...based on time stamp

Hi All,

guide in this

Regards

Nirmala

12 Replies
its_anandrjs

Oh its my mistake in variable check now with inline table with example

Let vTimeNow = Timestamp(NOW(),'hh:mm:ss');

TimeTable:

LOAD * Inline

[

Time

'$(vTimeNow)'

];

Regards

its_anandrjs

For timestamp you have to write like below script and for get time convertion use 'hh:mm:ss'

Let vTimeNow = Timestamp(Now( ),'hh:mm:ss');


TimeTable:

LOAD * Inline

[

Time

'$(vTimeNow)'

];

  

Regards

breno_morais
Partner - Contributor III
Partner - Contributor III

Thank you, helped me too.