Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Is it possible to set a format to show the time with the time zone? I've got a workbook that logs times, the only problem is, it is shared with users across Eastern, Central and Mountain time zones. Can I change the format to read 14:25:46 EST or 18:12:34 MDT? Thanks. -- scottnshelly ------------------------------------------------------------------------ scottnshelly's Profile: http://www.excelforum.com/member.php...fo&userid=7301 View this thread: http://www.excelforum.com/showthread...hreadid=565881 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() You would have to identify the Time Zone somewhere for each user; let's say in cell A1 you would have EST for one user and PST for another. Then all you have to do is to subtract 3 hours by using this formula: =HOUR(NOW())-IF(A1="PST",3,0)-IF(A1="MST",2,0)-IF(A1="CST",1,0) & ":" & MINUTE(NOW()) -- raypayette ------------------------------------------------------------------------ raypayette's Profile: http://www.excelforum.com/member.php...o&userid=29569 View this thread: http://www.excelforum.com/showthread...hreadid=565881 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Thu, 27 Jul 2006 23:26:52 -0400, scottnshelly
wrote: Is it possible to set a format to show the time with the time zone? I've got a workbook that logs times, the only problem is, it is shared with users across Eastern, Central and Mountain time zones. Can I change the format to read 14:25:46 EST or 18:12:34 MDT? Thanks. How will you know which time zone to apply? Once you know that, you can use a custom format: h:mm AM/PM" EDT" --ron |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() The problem is, I don't always know which time zone a user is in. Are there any solutions that don't require previous knowledge of the user's time zone? I'm currently using: ActiveCell.Value = Format(Date, "mm/dd/yyyy") ActiveCell.Offset(0, 1).Select ActiveCell.Value = Format(Time, "HH:mm:ss") Thanks. -- scottnshelly ------------------------------------------------------------------------ scottnshelly's Profile: http://www.excelforum.com/member.php...fo&userid=7301 View this thread: http://www.excelforum.com/showthread...hreadid=565881 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() You might be interested in a software that can locate a user from his IP: http://www.ip2location.com/ -- raypayette ------------------------------------------------------------------------ raypayette's Profile: http://www.excelforum.com/member.php...o&userid=29569 View this thread: http://www.excelforum.com/showthread...hreadid=565881 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Mon, 31 Jul 2006 22:15:32 -0400, scottnshelly
wrote: The problem is, I don't always know which time zone a user is in. Are there any solutions that don't require previous knowledge of the user's time zone? I'm currently using: ActiveCell.Value = Format(Date, "mm/dd/yyyy") ActiveCell.Offset(0, 1).Select ActiveCell.Value = Format(Time, "HH:mm:ss") Thanks. If you cannot determine the user's time zone, I don't see how you can format a cell referencing referencing his time zone. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hot key for time? | New Users to Excel | |||
Hot key for time? | Excel Discussion (Misc queries) | |||
Pie Chart showing Time Zone Comparisons - Can it be done? | Charts and Charting in Excel | |||
time sheet to calculate 2 different columns | Excel Worksheet Functions | |||
Time zone Time difference | Excel Worksheet Functions |