I have a form that collects times of day, into a sheet via a dropdown List of times (9:00 AM, 9:30 AM, 10:00 AM, ect).
I have converted these values into a time using the TIME function. So now I have 4 columns:
Start Time (dropdown list value from the form)
End Time (dropdown list value from the form)
Start Time 12 Hr (converting start time using the TIME function, of data type Text/Number)
End Time 12 Hr (converting the end time using the TIME function, of data type Text/Number)
When I try to determine the number of hours between the Start Time 12 Hr and the End Time 12 Hr, using both the Time function (=Time([Start Time 12 Hr]@row - [End Time 12 Hr]@row), I am expecting a decimal value. Instead I receive an error - #INVALID OPERATION.
Any thoughts?