Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I have 20 qvd's in qvd's folder.my requirement is i want to show all the qvd's last reloaded time individuvally.like below image.plz help me on this.
regards,
for Each file in filelist('QVD\*.qvd')
qvd:
LOAD distinct
'$(file)' as filename,
QvdCreateTime('$(file)') as qvdcreatetime
AutoGenerate 1;
next;
What do you mean by Last ReloadTime.
Are you looking forward when the QVD saved last time? if yes, use as below
Let vReloadTime = QvdCreateTime( 'your QVD file.qvd');
for Each file in filelist('QVD\*.qvd')
qvd:
LOAD distinct
'$(file)' as filename,
QvdCreateTime('$(file)') as qvdcreatetime
AutoGenerate 1;
next;
Thank u Massimo ...it's working fine....
Hi Maxgro,
Instead of loading all qvds from folder. If I want to load only specific qvds. lets say out of 20 I need to load only 5 then how to load.