Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
12 Replies
its_anandrjs
Champion III
Champion III

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
Champion III
Champion III

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.