Formula to determine if time is within range

odonovanc

Board Regular
Joined
Oct 4, 2017
Messages
60
Office Version
  1. 365
Let's say I have a cell that has the following value in cell A1: 8/31/2023 11:54:00 PM. The cell is in mm/dd/yyyy hh:mm format.

I want to write a formula that will tell me if the time in that cell is between 23:00 (11:00 PM) and 7:00 (7:00 AM). I need the date to be ignored altogether.

Help!!
 
Oops won't work for the morning, try
Excel Formula:
=IF(OR(MOD(A1,1)>=11/24,MOD(A1,1)<=7/24),"y","n")
=IF(OR(MOD(A51,1)>=23/24,MOD(A51,1)<=7/24),"y","n")

Replace the 11 with a 23. Seems to be working now. Thank you so much for the help.
 
Upvote 0

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Oops missed that as well.
Glad you sorted it Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,956
Members
449,096
Latest member
Anshu121

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