Good morning,
I have a series of time values which are formatted thus e.g. 28hr 46m 22s
I have some code that builds up a string containing the "minute" vales of these strings, so, for example 10h 15m 17s would display as 615 (10*60+15)
I achieve this with:
MinuteValue = (Hour(Selection) *...