Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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
Luminary Alumni
Luminary Alumni

Hi,

Try like this

TableName:

load *,

Now() AS Timestamp

inline

[

Column1, Column2

Value1, Value2

];

Regards,

Jagan.

its_anandrjs

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...