Nov 14 2023 11:36 AM
Below is a snapshot of a very large data set I am working with:
When using the following TIMEVALUE formula I always get value errors from times between 0000 and 0059 but it works just fine between 0100 and 2359.
=TIMEVALUE(LEFT(C29060,LEN(C29060)-2)&":"&RIGHT(C29060,2))
The Time column is in a "custom" format of 0000 so I can get the 4 digits needed for the time conversion.
I would appreciate if anyone has a solution to this.
Nov 14 2023 12:01 PM
Solution=--REPLACE(TEXT(A1,"0000"),3,0,":")
Nov 15 2023 07:38 AM
Nov 15 2023 08:30 AM
The four digits only show because of the custom format.
The cell content for 58 minutes is 58 and not 0058.
So LEFT() returns "". Together with RIGHT() the result is :58.
And TIMEVALUE() will convert this because of the missing 0.
Nov 16 2023 10:00 AM