Is there a way of getting the difference between two hour values and two minutes values and have the difference populated into a data card?

Is there a way of getting the difference between two hour values and two minutes values and have the difference populated into a data card?
hi @Anonymous
Have you tried
DateDiff(TimeOne, TimeTwo, Hours) //will give you the hours between the two datetimestamps
DateDiff(TimeOne, TimeTwo, Minutes) //will give you the minutes between the two datetimestamps
Hour(TimeOne) - Hour(TimeTwo) //will give you the difference between the hours, disregarding the days
Minute(TimeOne) - Minute(TimeTwo) // will give you the difference between the minutes, disregarding the days
More accurate for Hour will be
With({_TimeOne: Hour(TimeOne), _TimeTwo: Hour(TimeTwo)},Max(_TimeOne,_TimeTwo) - Min(_TimeOne,_TimeTwo))
Hope it helps,
R