Closed Thread
Results 1 to 5 of 5

In Excel, I want to convert Eastern time to pacific time

  1. #1
    dmunhall
    Guest

    In Excel, I want to convert Eastern time to pacific time

    how do I format a cell to subtract 3 hours from another cell?

  2. #2
    Registered User
    Join Date
    03-31-2006
    Posts
    14
    Can't you just subtract 3 from the hour value?



    Example. Say cell A1 has Eastern time. You want cell b4 to reflect pacific time.

    In cell b4 enter "=A1-3"


    Or, you could just move to California.

  3. #3
    Elkar
    Guest

    RE: In Excel, I want to convert Eastern time to pacific time

    There's probably a more efficient way to do this, but I so rarely use Times
    in my work, I'm not sure. But if you're just working with Time and not
    Dates, this works:

    =TIME(IF(HOUR(A1)<3,21+HOUR(A1),HOUR(A1)-3),MINUTE(A1),SECOND(A1))

    HTH,
    Elkar


    "dmunhall" wrote:

    > how do I format a cell to subtract 3 hours from another cell?


  4. #4
    Ron Coderre
    Guest

    RE: In Excel, I want to convert Eastern time to pacific time

    Try something like this:

    For a time in A1
    B1: =A1-3*1/24

    The cells must be formatted as Time to display correctly.

    Does that help?

    ***********
    Regards,
    Ron

    XL2002, WinXP-Pro


    "dmunhall" wrote:

    > how do I format a cell to subtract 3 hours from another cell?


  5. #5
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675
    Quote Originally Posted by Ron Coderre
    Try something like this:

    For a time in A1
    B1: =A1-3*1/24
    But you'll have a problem with this if, for instance A1 contains the time 02:00

    Try

    =MOD(A1-"03:00",1)

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1