Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to create an if statement that says:
If G2 is less than or equal to 1:00 PM then return "Acceptable" and if it is greater than 1:00 PM return "Not Acceptable" Thanks for the help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(G2<=TIME(13,0,0),"Acceptable","Not Acceptable")
"JB" wrote: I want to create an if statement that says: If G2 is less than or equal to 1:00 PM then return "Acceptable" and if it is greater than 1:00 PM return "Not Acceptable" Thanks for the help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=IF(G2-INT(G2)<=TIME(13,0,0),"Acceptable","Not Acceptable") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "JB" wrote in message ... I want to create an if statement that says: If G2 is less than or equal to 1:00 PM then return "Acceptable" and if it is greater than 1:00 PM return "Not Acceptable" Thanks for the help! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks!
"Toppers" wrote: =IF(G2<=TIME(13,0,0),"Acceptable","Not Acceptable") "JB" wrote: I want to create an if statement that says: If G2 is less than or equal to 1:00 PM then return "Acceptable" and if it is greater than 1:00 PM return "Not Acceptable" Thanks for the help! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Be aware that if the cell contains a date and time, but is
formatted to display only time, the formula will always return "Not Acceptable". -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Toppers" wrote in message ... =IF(G2<=TIME(13,0,0),"Acceptable","Not Acceptable") "JB" wrote: I want to create an if statement that says: If G2 is less than or equal to 1:00 PM then return "Acceptable" and if it is greater than 1:00 PM return "Not Acceptable" Thanks for the help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hot key for time? | New Users to Excel | |||
Hot key for time? | Excel Worksheet Functions | |||
Hot key for time? | Excel Discussion (Misc queries) | |||
time sheet to calculate 2 different columns | Excel Worksheet Functions | |||
Using "IF" and "AND" statements with current time | Excel Worksheet Functions |