Hi all,
i want to filter datewise logs and datas from google sheet and mail it to the team.how can i etch date from my system.
Hi all,
i want to filter datewise logs and datas from google sheet and mail it to the team.how can i etch date from my system.
Create a variable of type DateTime
The following assign activity will get the system date
dt = DateTime.Now
If you want the time in string format,
strDate = DateTime.Now.ToString("dd-MM-yyyy")
will return the today’s date in dd-MM-yyyy format, e.g., 10-04-2019
thank you