I have 2 timing
for example
time1 : 10:31
time 2 : 14:04
I want difference of these 2 timing but only in minutes
for example the difference is 2 timing is 3 hrs and 30 min … so i want only the 30 minute part … how do i get that from ui path?
I have 2 timing
for example
time1 : 10:31
time 2 : 14:04
I want difference of these 2 timing but only in minutes
for example the difference is 2 timing is 3 hrs and 30 min … so i want only the 30 minute part … how do i get that from ui path?
CDate(“14:04”).TimeOfDay
[14:04:00] - we parse string to timespan
(CDate(“14:04”).TimeOfDay- Cdate(“10:31”).TimeOfDay)
[03:33:00] - subtraction
(CDate(“14:04”).TimeOfDay- Cdate(“10:31”).TimeOfDay).Minutes
33 - getting only the minutes part
Hi
Here you go with the exact same scenario been already discussed
Hope this would help you
Cheers @poojaskyrathore