Excel Today's date + 1 with time included

NormChart55

New Member
Joined
Feb 22, 2022
Messages
42
Office Version
  1. 2016
Platform
  1. Windows
Hello All,

I am trying to find a formula that takes into account a certain time that we want to include in a custom format.

The custom cell format is below

m/d/yyyy h:mm AM/PM

Using the formula today()+1 does of course give me the correct date and in the right format, but always goes to 12:00 AM for the time. I am needing this to always be 11 AM. is there an easy fix to include this into the equation?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Try this:
Excel Formula:
=TODAY()+(35/24)
 
Upvote 0
Solution
You are welcome!
Glad I was able to help.

They secret is knowing how dates and times are stored in Excel. Dates are really just numbers, specifically the number of days since 1/0/1900, with special date formats.
And time is really just the fraction of one day.

To get to the next day, you would simply add "1". To get to 11:00 AM, you would need to add 11/24 (11 hours out of the 24 hours in a day).
So 1 +11/24 = 35/24.
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,458
Members
449,161
Latest member
NHOJ

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top