Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
format code for hour,minute and seconds is 'hhmmss'. 'MM' denotes month, not minute.
let var_filename = 'BUFFER_' & timestamp(now(), 'YYYYMMDD_hhmmss');
format code for hour,minute and seconds is 'hhmmss'. 'MM' denotes month, not minute.
let var_filename = 'BUFFER_' & timestamp(now(), 'YYYYMMDD_hhmmss');
let var_filename = 'BUFFER_' & timestamp(now(), 'DD/MM/YYYY h:mm:ss ');
regards-bika
Thanks !!!