I have a dataset of times entered (incorrectly) in the format "10:32am" that I need to convert to sortable, graph-able time values. The best I've come up with so far is manually breaking the string apart and building it back together as the correct format, but it's not registering as a time value yet.
=LEFT(A1, LEN(A1) - 2) & " " & UPPER(RIGHT(A1, 2))
Any help would be much appreciated! Thanks in advance.
=LEFT(A1, LEN(A1) - 2) & " " & UPPER(RIGHT(A1, 2))
Any help would be much appreciated! Thanks in advance.