Hidden code?
Hidden code?
I have a column of times in Google sheets which are summed at the bottom. The formula at the end is =Sum(F5:F41). The result is clearly incorrect. When I reduce the range to F5:F16, it works properly. Once I move to F17, the total changes to an inaccurate value. All rows, columns, and cells appear correct, so the issue must be hidden code within a cell. Any ideas would be appreciated.
Wrong by hours. Displays 8:30 total instead of the correct 62:15.
I found a workaround:
Since I need total time, not just hours and minutes, I added another column and stored time as decimal values.
=HOUR(F5)+MINUTE(F5)/60
Got the data I required.
Thanks.