For those interested in getting minutes from Stopwatch as a Number you have to take the milliseconds and divide by 60000. That will give you minutes. Then use ROUND to make it a whole number.
Ex: Total time from stopwatch_time: 763289
therefore: 763289 / 60000 = 12.72148333 use ROUND and you get 12.
Going one more step to find avg time, add all the total times from stopwatch (all_times_from_stopwatch/60000) then divide by the number of recorded times stopwatch was recorded by user or instance (using “Count”) and you’ll get the average!!!
Fun times!! I hope this helps someone. It was a beast to figure out.