Hi ,
I need to export table data to a csv file. But I have to save the filename with some name concatenate with current date and time
For ex: Purchaseorder22/01/202106:22:20. Help me on this.
Regards,
Ram
Hi ,
I need to export table data to a csv file. But I have to save the filename with some name concatenate with current date and time
For ex: Purchaseorder22/01/202106:22:20. Help me on this.
Regards,
Ram
If you're not afraid of .NET Interop, it can be very simple. Something like this:
System.String::Format('PurchaseOrder{0:dd/MM/yyyyHH:mm:ss}', dateTimeValue);
Note that including colon in file names doesn't look very wise to me.
Hi Ram Kumar,
You can try the code as per this post.
André Arnaud de Cal... 291,784 Super User 2024 Season 2
Martin Dráb 230,476 Most Valuable Professional
nmaenpaa 101,156