Get Date from System and filter date wise logs from a sheet

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

1 Like

thank you

1 Like