I get the dates from excel in 24/march/2022 but now I want add 2 days in that same format how I can add it plzzz give advice
Similar workflow below
Example.zip (2.6 KB)
Variable of type String Output = Input.AddDays(2).ToString("dd/MMMM/yyyy")
Input is the variable of type date time it should have the date format that you are getting from the excel
Hi @Rahulthombare,
You can continue by adding 2 days.
Convert.ToDateTime(“yourString”).AddDays(2).ToString(“dd/MMMMM/yyyy”)
Regards,
MY