I'm trying to pull the Time out of the Create Date field (Date/Time format). The column has been renamed "Start Date Time" (as you'll see in the formula below).
I have been able to pull the hour using this formula:
=MID([Start Date Time]@row, FIND(":", [Start Date Time]@row) - 2, 2)
For a row that started at 2 PM, it's giving me a 2.
What I can't seem to do is convert that to a number using Value:
=VALUE(MID([Start Date Time]@row, FIND(":", [Start Date Time]@row) - 2, 2))
results in "#Invalid Value"
Strangely though, I can use another cell to create a value formula that references the first one:
=VALUE([Find Time]4)
And that works - (essentially giving me the same number, but right justified and I can go on to use it in a calculation.
(Incidentally: the Value formula works if the hour is 2 characters (e.g. 10 AM), but not if it's a single character - so I'm guessing the space before the 2 has something to do with that, but shouldn't Value take care of that?)
Why the heck can't I do it all in one formula?? (I'm stubbornly trying to get rid of all my helper columns and get a large calculation into a single formula - this is just a piece of it)....