Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save omergorur/9ad8b0c158f35146526a427bb2518c0b to your computer and use it in GitHub Desktop.

Select an option

Save omergorur/9ad8b0c158f35146526a427bb2518c0b to your computer and use it in GitHub Desktop.
Excel: Round Time to the Nearest 15 Minutes
=ROUND(A1*(24*60)/15,0)*15/(24*60)
=YUVARLA(A1*(24*60)/15;0)*15/(24*60)
@omergorur

Copy link
Copy Markdown
Author

Excel: Round Time to the Nearest 15 Minutes

image

Round any time value to the nearest 15-minute interval.

  • Column A contains the original time values.
  • Column B returns the time rounded to the nearest 15 minutes.
  • Change 15 to any interval you need (e.g., 5, 10, 30, 60).
  • Format cells as h:mm to display as time.
=ROUND(A1*(24*60)/15,0)*15/(24*60)

Excel: Saati En Yakın 15 Dakikaya Yuvarlama

Herhangi bir saat değerini en yakın 15 dakikalık dilime yuvarlar.

  • A sütunu: Orijinal saat değerlerini içerir.
  • B sütunu: En yakın 15 dakikaya yuvarlanmış saati döndürür.
  • 15 yerine istediğiniz aralığı yazabilirsiniz (ör. 5, 10, 30, 60).
  • Hücreleri ss:dd olarak biçimlendirin.
=YUVARLA(A1*(24*60)/15;0)*15/(24*60)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment