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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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
MK_QSL
MVP
MVP

Create a variable like below

Let vStartTime = NOW();

before your inline table

and use vStartTime variable

Not applicable

PFA.

Thanks,

Ram

Not applicable

load name, age, now() as time;

load * inline

[

name, age

a,20

];


jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

TableName:

load *,

Now() AS Timestamp

inline

[

Column1, Column2

Value1, Value2

];

Regards,

Jagan.

its_anandrjs
Champion III
Champion III

Please check i update now

Write a variable like

Let vTimeNow = NOW();

and use this in the inline table

TimeTable:

LOAD * Inline

[

Time

'$(vTimeNow )'

];

dolly777
Contributor III
Contributor III
Author

Hi Anand,

Time not displaying

Not applicable

Steal from previous answer

LET vTimeNow = NOW();

TableName:

load *,

Now() AS Timestamp2

inline

[

Column1, Column2,Timestamp

Value1, Value2,$(vTimeNow)

];

Not applicable

Try any of these

T1:

Load

Timestamp(Now(),'DD/MM/YYYY hh:mm:ss') as Time

AutoGenerate 1;

Or

Let vT = Timestamp(Now(),'DD/MM/YYYY hh:mm:ss');
T2:
Load

* Inline

[
TimeVar
$(vT)
];

dolly777
Contributor III
Contributor III
Author

Thank u

its working...