Hi, I want to get data from URL (which is stored in format dd-MMM-yyyy [for example 1-Jan-2022]) and add one day.
I have tried to get date from site using “Get Text” activity (which is later stored as string), and create new variable with System.DateTime type and convert it using “DateOnly.ParseExact(aDate, “dd-MM-yyyy”, system.Globalization.CultureInfo.InvariantCulture).AddDays(+1).ToString” expression, but I keep getting error:
Any ideas how can I solve it?