Hi @CPKH
The following function will provide the difference in minutes between the 2 times. In this example, the result will be 190.
DateDiff(TimeValue("00:06"),TimeValue("03:16"), Minutes)
In your case, you can refer to your labels, rather than use hardcoded values.
You can then use this with the formula in your other post to display the duration in hh:mm format.
RoundDown(DateDiff(TimeValue("00:06"),TimeValue("03:16"), Minutes)/60,0) &
":" &
Text(Mod(DateDiff(TimeValue("00:06"),TimeValue("03:16"), Minutes),60), "00")
If you post some additional details about your summing requirements, we can provide some more specific help.