Round time to nearest 15 minutes

=MROUND(time,"0:15")
To round a time to the nearest 15 minute interval, you can use the MROUND function, which rounds based on a supplied multiple. In the example shown, the formula in C6 is:
=MROUND(B6,"0:15")
MROUND rounds to nearest values based on a supplied multiple. When you supply "0:15" as the multiple, Excel internal converts 0:15 into 0.0104166666666667, which is the decimal value that represents 15 minutes, and rounds using that value.
You can also express 15 minutes in a formula with this formula:
=15/(60*24)
The formula above divides 15 by 1440, which is the number of minutes in one day. So, to Excel, these formulas are identical:
Round to other time intervals
As you would expect, you can use the same formula to round to different time intervals. To round to the nearest 30 minutes, or nearest 1 hour, use these formulas
Always round up
To always round up to the nearest 15 minutes, you can use the CEILING function:
=CEILING(B6,"0:15")
Like MROUND, the CEILING function rounds to a nearest multiple. The difference is that CEILING always rounds up. The FLOOR function can be used to always round down
Download 200+ Excel Shortcuts
Get over 200 Excel shortcuts for Windows and Mac in one handy PDF.