I’m creating a scoring sheet for a timed competition. The time is in minutes and seconds that it takes to complete the task. They can get time penalties while doing this and it add to their time making the Time + Penalties = Adjusted Time
I created 2 additional helper rows to calculate the time and penalties based on posts I read to calculate time. When I use this formula and divide it by 60 it adds time.
VALUE(LEFT(Time@row, FIND(":", Time@row) - 1)) + VALUE(RIGHT(Time@row, 2)) /60
What am I doing wrong?
If I can get these 2 rows to calculate correctly, I was going to use the next formula to calculate the Adjusted Time.
=[Time Calc]@row + [Penalties Calc]@row
Thank you for your help.