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 @Rup_1
Check this post
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))
@Vivek_Arunagiri teach the man to fish, donβt throw the fish to themβ¦