Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I know to get the current time in excel we should use the =NOW() formula,
which will give the system time in the cell. Let us assume my system time is set up for Pacific Time, how to get the current GMT in the cell. Also any formula in which time automatically changes in the cell. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
PST: =NOW()+8/24 PDT: =NOW()+7/24 In article , mrbalaje wrote: I know to get the current time in excel we should use the =NOW() formula, which will give the system time in the cell. Let us assume my system time is set up for Pacific Time, how to get the current GMT in the cell. Also any formula in which time automatically changes in the cell. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the time difference is for example 3 hours would'nt the following formula
work: =NOW()+3 "JE McGimpsey" wrote: One way: PST: =NOW()+8/24 PDT: =NOW()+7/24 In article , mrbalaje wrote: I know to get the current time in excel we should use the =NOW() formula, which will give the system time in the cell. Let us assume my system time is set up for Pacific Time, how to get the current GMT in the cell. Also any formula in which time automatically changes in the cell. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No, Rick. That would add 3 days, not 3 hours.
Either =NOW()+3/24, or =NOW()+TIME(3,0,0) -- David Biddulph "Rickhotblue" wrote in message ... If the time difference is for example 3 hours would'nt the following formula work: =NOW()+3 "JE McGimpsey" wrote: One way: PST: =NOW()+8/24 PDT: =NOW()+7/24 In article , mrbalaje wrote: I know to get the current time in excel we should use the =NOW() formula, which will give the system time in the cell. Let us assume my system time is set up for Pacific Time, how to get the current GMT in the cell. Also any formula in which time automatically changes in the cell. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks David, this is fine.
But my main concern is for automatic change in time in a cell, Which should also take care of daylight saving. Any formula for that? "David Biddulph" wrote: No, Rick. That would add 3 days, not 3 hours. Either =NOW()+3/24, or =NOW()+TIME(3,0,0) -- David Biddulph "Rickhotblue" wrote in message ... If the time difference is for example 3 hours would'nt the following formula work: =NOW()+3 "JE McGimpsey" wrote: One way: PST: =NOW()+8/24 PDT: =NOW()+7/24 In article , mrbalaje wrote: I know to get the current time in excel we should use the =NOW() formula, which will give the system time in the cell. Let us assume my system time is set up for Pacific Time, how to get the current GMT in the cell. Also any formula in which time automatically changes in the cell. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
XL knows nothing about daylight saving time, or any time other than
system time. If you want, you can put TRUE or FALSE in a cell (say, J1) to indicate DST is in effect, then change the formula to =NOW()+(8-J1)/24 You could also either hardcode or develop a formula that would automatically determine when DST started and ended, but as demonstrated this year, the dates can change, not all countries use the same start and end date, not all US states or portions of states implement DST, so it would be important to recognize the boundary conditions for any such formula. In article , mrbalaje wrote: But my main concern is for automatic change in time in a cell, Which should also take care of daylight saving. Any formula for that? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Time difference calculations, daylight savings time, Excel | Excel Discussion (Misc queries) | |||
In Excel, I want to convert Eastern time to pacific time | Excel Discussion (Misc queries) | |||
Negative time should be allowed in Excel, eg time difference | Excel Discussion (Misc queries) | |||
How do I time Hours & mins in excel - Time sheet | Excel Discussion (Misc queries) | |||
Accumulate weekly time to total time in Excel. | Excel Discussion (Misc queries) |