Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a cells value to be displayed depending on the what the current time
of day it is. If the current time is between midnight and noon, then I want the cell to equal "3rd Shift". If not, then the cell should be "1st Shift". Any ideas on the best way to accomplish this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(HOUR(NOW())<=12,"3rd Shift","1st Shift")
If this post helps click Yes --------------- Jacob Skaria "jschae" wrote: I need a cells value to be displayed depending on the what the current time of day it is. If the current time is between midnight and noon, then I want the cell to equal "3rd Shift". If not, then the cell should be "1st Shift". Any ideas on the best way to accomplish this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try,
=IF(TIME(HOUR(NOW()),MINUTE(NOW()),0)TIME(12,0,0) ,"1st Shift","3rd Shift") Mike "jschae" wrote: I need a cells value to be displayed depending on the what the current time of day it is. If the current time is between midnight and noon, then I want the cell to equal "3rd Shift". If not, then the cell should be "1st Shift". Any ideas on the best way to accomplish this? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Wouldn't that give 3rd shift for times up to 12:59:59.999 ?
You could try =IF(MOD(NOW(),1)<=0.5,"3rd Shift","1st Shift") -- David Biddulph "Jacob Skaria" wrote in message ... =IF(HOUR(NOW())<=12,"3rd Shift","1st Shift") If this post helps click Yes --------------- Jacob Skaria "jschae" wrote: I need a cells value to be displayed depending on the what the current time of day it is. If the current time is between midnight and noon, then I want the cell to equal "3rd Shift". If not, then the cell should be "1st Shift". Any ideas on the best way to accomplish this? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks David for pointing that out...
Another way.. =IF(TEXT(NOW(),"AM/PM")="AM","3rd Shift","1st Shift") If this post helps click Yes --------------- Jacob Skaria "David Biddulph" wrote: Wouldn't that give 3rd shift for times up to 12:59:59.999 ? You could try =IF(MOD(NOW(),1)<=0.5,"3rd Shift","1st Shift") -- David Biddulph "Jacob Skaria" wrote in message ... =IF(HOUR(NOW())<=12,"3rd Shift","1st Shift") If this post helps click Yes --------------- Jacob Skaria "jschae" wrote: I need a cells value to be displayed depending on the what the current time of day it is. If the current time is between midnight and noon, then I want the cell to equal "3rd Shift". If not, then the cell should be "1st Shift". Any ideas on the best way to accomplish this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
updated cell with current time\date if any data in a row has chan | Excel Worksheet Functions | |||
Click a cell and update to current time / date ? | Excel Discussion (Misc queries) | |||
Current date and time when different cell = X | Excel Worksheet Functions | |||
current Date and time in cell | Excel Discussion (Misc queries) | |||
how do I insert the current time (static) and date in a cell? | Excel Discussion (Misc queries) |