I'm needing to round a date based on the timestamp within the field. Right now, I have say "12/08/17 16:42:05" in a given cell. I need to round this date to either 12/08/17 or 12/09/17, based on the time. So if an order came in at say 3pm (15:00:00), I need the date to round to the next day, since that's after hours. Make sense?
Microsoft ExcelMicrosoft Office
Last Comment
Wayne Taylor (webtubbs)
8/22/2022 - Mon
Bill Prew
You should just be able to use ROUND(), so if the date is in A1 then use this (and format the result column as just date, no time if you don't want to see the 00:00:00 time on the end):
=ROUND(A1,0)
»bp
lindemrm
ASKER
That doesn't allow me to select a time at which I want the date to round up.
=ROUND(A1,0)
»bp