IF statement to identify >or < time values

mattmac75

New Member
Joined
Dec 13, 2013
Messages
33
I would like to write an IF statement that would allow me to identify the times great than :20 and less than 5:00

This would allow me to filter only on those entries

Between stops
0:03
0:12
0:00
1:59
0:28
0:15
0:14
0:00
0:06
0:09
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi, try:


Excel 2012
AB
200:03FALSE
300:12FALSE
400:00FALSE
501:59TRUE
600:28TRUE
700:15FALSE
804:59TRUE
900:00FALSE
1000:06FALSE
1100:09FALSE
Sheet1
Cell Formulas
RangeFormula
B2=AND(A2>"00:20"+0,A2<"05:00"+0)
 
Upvote 0

Forum statistics

Threads
1,196,440
Messages
6,015,284
Members
441,886
Latest member
fbell

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