Created
December 3, 2018 11:14
-
-
Save mdiener21/8a24fed03c023999ebfa6031661c5741 to your computer and use it in GitHub Desktop.
Formulat for Libre Office Sheets round a duration value to the nearest quarter hour
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sheets formula to round the value in cell F2 to the nearest quarter hour | |
=HOUR(F2) + (MROUND(MINUTE(F2),15)/60) | |
if 1:18:33 is the duration the result is 1.25. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment