#1   Report Post  
Junior Member
 
Posts: 8
Question World Clock (Help still needed)

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   Report Post  
Peo Sjoblom
 
Posts: n/a
Default World Clock

=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   Report Post  
Chip Pearson
 
Posts: n/a
Default World Clock

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   Report Post  
Junior Member
 
Posts: 8
Unhappy

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:
Originally Posted by Peo Sjoblom
=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
Attached Files
File Type: zip World Clock.zip (1.8 KB, 154 views)
  #5   Report Post  
Peo Sjoblom
 
Posts: n/a
Default World Clock

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   Report Post  
Junior Member
 
Posts: 8
Talking

Cheers Peo,

Worked a treat!!!

Regards,
Sammy



Quote:
Originally Posted by Peo Sjoblom
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
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto updates - Clock tom300181 Excel Discussion (Misc queries) 0 August 5th 05 11:13 AM
Start Clock/Stop Clock abfabrob Excel Discussion (Misc queries) 9 June 28th 05 04:26 PM
Sorry, my clock is off CLR Excel Discussion (Misc queries) 2 June 26th 05 01:19 AM
Production CLock Thorrrr Excel Worksheet Functions 0 May 2nd 05 06:00 PM
clock Wildman Excel Worksheet Functions 2 April 26th 05 10:31 AM


All times are GMT +1. The time now is 05:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"