Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Ok, you guys helped be out big time with my last question!!! So here’s another.
I want A1 to = the current time (where I am) B1 = Friends name C1 = time diff in hours between us D1 = What time it is where they are. Is this possible??? Thanks in advance, Sammy Last edited by SammyJJones : November 14th 05 at 09:25 PM Reason: Can't work solution |
#2
![]() |
|||
|
|||
![]()
=NOW()
will give you the current time of your computer clock if you put NOW() in A1 and format it as time simply subtract or add the different timezones =MOD(A1-TIME(5,,),1) the above will give you STD us east coast time when now() is Greenwich or if you are on the east coast and friend is in Seattle you would get his/her time =MOD(A1-TIME(3,,),1) so you need to use some sort of lookup table with your friends names and their respective +- time so if you create a 2 column table with names in the leftmost column and their time offset in column2 with -3 for Seattle if your times zone is US eastern =MOD(A1+VLOOKUP(A3,MyTable,2,0)*TIME(1,,),1) -- Regards, Peo Sjoblom (No private emails please) "SammyJJones" wrote in message ... Ok, you guys helped be out big time with my last question!!! So here's another. I want A1 to = the current time (where I am) B1 = Friends name C1 = time diff in hours between us D1 = What time it is where they are. Is this possible??? Thanks in advance, Sammy -- SammyJJones |
#3
![]() |
|||
|
|||
![]()
Which data are you providing and which data do you want to
calculate? -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "SammyJJones" wrote in message ... Ok, you guys helped be out big time with my last question!!! So here's another. I want A1 to = the current time (where I am) B1 = Friends name C1 = time diff in hours between us D1 = What time it is where they are. Is this possible??? Thanks in advance, Sammy -- SammyJJones |
#4
![]() |
|||
|
|||
![]()
Peo,
I have tried your solution, but have made a total mess of it, I have attached the file, could you please take a look at it and tell me where I've gone wrong? Thanks in advance, Sammy. Quote:
|
#5
![]() |
|||
|
|||
![]()
You don't need to create the lookup table if you just want the times
the way your setup is, put this in C4 and copy down =MOD($B$1+B4*TIME(1,,),1) also the name errors you had was because you didn't define a name for your table, it could also have been written =MOD($B$1+VLOOKUP(A4,$A$4:$B$8,2,0)*TIME(1,,),1) and copied down -- Regards, Peo Sjoblom "SammyJJones" wrote in message ... Peo, I have tried your solution, but have made a total mess of it, I have attached the file, could you please take a look at it and tell me where I've gone wrong? Thanks in advance, Sammy. Peo Sjoblom Wrote: =NOW() will give you the current time of your computer clock if you put NOW() in A1 and format it as time simply subtract or add the different timezones =MOD(A1-TIME(5,,),1) the above will give you STD us east coast time when now() is Greenwich or if you are on the east coast and friend is in Seattle you would get his/her time =MOD(A1-TIME(3,,),1) so you need to use some sort of lookup table with your friends names and their respective +- time so if you create a 2 column table with names in the leftmost column and their time offset in column2 with -3 for Seattle if your times zone is US eastern =MOD(A1+VLOOKUP(A3,MyTable,2,0)*TIME(1,,),1) -- Regards, Peo Sjoblom (No private emails please) "SammyJJones" wrote in message ... Ok, you guys helped be out big time with my last question!!! So here's another. I want A1 to = the current time (where I am) B1 = Friends name C1 = time diff in hours between us D1 = What time it is where they are. Is this possible??? Thanks in advance, Sammy -- SammyJJones +-------------------------------------------------------------------+ |Filename: World Clock.zip | |Download: http://www.excelbanter.com/attachment.php?attachmentid=47| +-------------------------------------------------------------------+ -- SammyJJones |
#6
![]() |
|||
|
|||
![]()
Cheers Peo,
Worked a treat!!! Regards, Sammy Quote:
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto updates - Clock | Excel Discussion (Misc queries) | |||
Start Clock/Stop Clock | Excel Discussion (Misc queries) | |||
Sorry, my clock is off | Excel Discussion (Misc queries) | |||
Production CLock | Excel Worksheet Functions | |||
clock | Excel Worksheet Functions |