Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to run a task that store a file every month but i need the filenamed thats beeing stored different everytime.
Hence, in the end of the script;
Store table into file1.txt(txt); //First month, first reload
Store table into file2.txt(txt); //secound moth, secound reload
etc..
I pretty new to this so be gentle..
Thank you!
Determine a name of file based on the month for example LET MyName=TEXT(date(today(),'YYYYMM')
Then Store MyTable into MyTable$(MyName).qvd;
Rgds,
Sébastien
Determine a name of file based on the month for example LET MyName=TEXT(date(today(),'YYYYMM')
Then Store MyTable into MyTable$(MyName).qvd;
Rgds,
Sébastien
That's a really good idea! Why didn't i think of that!
Thank you so much for your quick answer!
//A.