Hi,
I have two date:-
- 11/08/17
2)2019-03-05
I want to take difference between these two date how to take.
Hi,
I have two date:-
Hi,
I tried but not getting result because format is different.
could you please provide sample xxml file for the same.
Please stop asking for xaml solutions. Here you can find information on how to parse the string to date
Hi @Rup_1,
You need to convert it to date format before you find difference.
DateDiff(DateInterval.day, Convert.toDatetime(“11/08/17”),Convert.toDatetime(“2019-03-05”))
or
DateDiff(DateInterval.day, DateTime.ParseExact(“11/08/17”, “dd/MM/yy”,Globalization.CultureInfo.InvariantCulture),DateTime.ParseExact(“2019-03-05”, “yyyy-MM-dd”,Globalization.CultureInfo.InvariantCulture))