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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Real timestamp

Dear all,

how can I get the real timestamp in qlikview ?

I'm trying the following, but it doesn't work well:

let var_filename = 'BUFFER_' &  timestamp(now(), 'YYYYMMDD_HHMMSS');

What I'm doing wrong ?

Thanks in advance

1 Solution

Accepted Solutions
swuehl
MVP
MVP

format code for hour,minute and seconds is 'hhmmss'. 'MM' denotes month, not minute.

let var_filename = 'BUFFER_' &  timestamp(now(), 'YYYYMMDD_hhmmss');

View solution in original post

3 Replies
swuehl
MVP
MVP

format code for hour,minute and seconds is 'hhmmss'. 'MM' denotes month, not minute.

let var_filename = 'BUFFER_' &  timestamp(now(), 'YYYYMMDD_hhmmss');

Not applicable
Author

let var_filename = 'BUFFER_' &  timestamp(now(), 'DD/MM/YYYY h:mm:ss ');

regards-bika

Anonymous
Not applicable
Author

Thanks !!!