I want select first calendar box 1st of month(any months) date and second calendar need to select previous date in current date.(now.AddDays(-1).ToString)
example: 1st - 11/01/2023
2nd -11/09/2023 (current date 11/10/2023)
I want select first calendar box 1st of month(any months) date and second calendar need to select previous date in current date.(now.AddDays(-1).ToString)
example: 1st - 11/01/2023
2nd -11/09/2023 (current date 11/10/2023)
Hi @nkaushalya
For the first calendar box (1st of the month), use the “Type Into” activity and input the date in the required format.
DateTime.Now.ToString(“MM/dd/yyyy”)
For the second calendar box (previous date), use another “Type Into” activity.
DateTime.Now.AddDays(-1).ToString(“MM/dd/yyyy”)
Hope this helps
Cheers
Hi @nkaushalya ,
Have you tried type into ?
regards,