Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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 !!!