Round time to nearest 15min interval in Excel

前端 未结 11 2442
伪装坚强ぢ
伪装坚强ぢ 2020-12-30 03:20

I\'ve an excel spreadsheet with a column which has the date and time of a particular event. I would like to round this to the nearest 15 minute interval so that I can count

11条回答
  •  天命终不由人
    2020-12-30 03:44

    mround takes time values as strings, so you can use

    =mround(a1,"0:15")
    

    which I think is the shortest and clearest method.

提交回复
热议问题