Hi
I have two string
1)9:17:00 AM
2)8:00:00 AM
How to find difference between two string.
Hi
I have two string
1)9:17:00 AM
2)8:00:00 AM
How to find difference between two string.
TimeSpan is returned
Hi @BNK ,
DateDiff(DateInterval.Minute,CDate(“8:00:00 AM”),CDate(“9:17:00 AM”))
DateDiff(DateInterval.Second,CDate(“8:00:00 AM”),CDate(“9:17:00 AM”))
DateDiff(DateInterval.Hour,CDate(“8:00:00 AM”),CDate(“9:17:00 AM”))
Hope it helps.