← All how-to recipes

How to convert 12-hour text times to 24-hour

✓ Verified in LibreOffice 25.8.7.3

Turn "3:45 PM" strings from exports into real 24-hour times.

The formula

AppFormulaNotes
Excel=TEXT(TIMEVALUE(A2),"HH:MM")Drop the TEXT wrapper to keep a real time value for math; format the cell as HH:MM instead.
Google Sheets=TEXT(TIMEVALUE(A2),"HH:MM")Identical.
LibreOffice Calc=TEXT(TIMEVALUE(A2),"HH:MM")Identical.

How it works

TIMEVALUE parses a time written as text — including the AM/PM suffix — into the day-fraction spreadsheets use, and TEXT with an HH code renders it 24-hour style: "3:45 PM" → "15:45". For calculations (durations, sorting), skip the TEXT wrapper and just format the TIMEVALUE cell as HH:MM — keeping it numeric. If TIMEVALUE returns #VALUE!, the text has a nonbreaking space or stray characters; TRIM/SUBSTITUTE it clean first.

Verified, not just documented

We ran =TEXT(TIMEVALUE(A2),"HH:MM") in LibreOffice 25.8.7.3 (headless, with forced recalculation) and it returned 15:45 — exactly the expected result. Every formula here is confirmed by actually executing it.