I have dates in dd/MMMM/yyyy format I want add 2 days in that format how I can add it plzzz suggest. And my data type is system. Datetime
@Rahulthombare Try this
Variable of type string Output = Input.AddDays(2).ToString("dd/MMMM/yyyy")
- Input is the variable of type date time and it should have the date that you are getting from the source
Similar workflow for ref
Example.zip (2.6 KB)
Hey @Rahulthombare
If your variable is a string then,
DateTime.ParseExact(strDate,"dd/MMMM/yyyy",Nothing,Nothing).AddDays(1).ToString("dd/MMMM/yyyy")
If it’s a date type variable then,
Hope this helps.
Thanks
#nK