+ Reply to Thread
Results 1 to 15 of 15

Daylight saving time

  1. #1
    Forum Contributor
    Join Date
    08-22-2005
    Location
    Denmark
    MS-Off Ver
    Excel 365
    Posts
    349

    Daylight saving time

    I need to correct some UTC time stamps; and in my time zone that means to add 2 hours in summer and 1 hour in winter.
    Is there an Excel function that recognizes if a date is within daylight saving or not?


    NSV

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    Given that daylight saving starts at 01:00 on the last Sunday in March and ends at 01:00 on the last Sunday in October if you have a timestamp, including time and date, in A1 this formula will add 1 hour in winter and 2 hours in summer, for any date

    =IF(A1="","",IF(AND(A1>DATE(YEAR(A1),4,1-WEEKDAY(DATE(YEAR(A1),4,0)))+1/24,A1<DATE(YEAR(A1),11,1-WEEKDAY(DATE(YEAR(A1),11,0)))+1/24),2,1)/24+A1)

    edit: here's a possible alternative formula, a little shorter but perhaps less transparent....

    =IF(A1="","",IF(PRODUCT(A1-DATE(YEAR(A1),{4,11},1-WEEKDAY(DATE(YEAR(A1),{4,11},0)))-1/24),1,2)/24+A1)
    Last edited by daddylonglegs; 06-29-2007 at 03:13 PM.

  3. #3
    Forum Contributor
    Join Date
    08-22-2005
    Location
    Denmark
    MS-Off Ver
    Excel 365
    Posts
    349
    Thanks a lot for the help!!

    Just one more question: How does the first IF work - what does it mean that A1 = "","""? I have never seen that before.

    I could not get the alternative solution to work as it apparently adds only 1 hour regardless of the time of year. I'll look a bit more into it when I get some time - I like the short solutions.



    NSV
    Last edited by nsv; 07-02-2007 at 06:05 AM.

  4. #4
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    the first bit, just confirms that you have a value in a1, if you dont it leaves it blank. If you always have values the formula could be shortened to exclude this, but it is more elegant to leave it in.

    Regards

    Dav

  5. #5
    Forum Contributor
    Join Date
    08-22-2005
    Location
    Denmark
    MS-Off Ver
    Excel 365
    Posts
    349
    ooops, I see it now; confusion caused by my using semicolon is stead of comma...

  6. #6
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    Quote Originally Posted by nsv
    I could not get the alternative solution to work as it apparently adds only 1 hour regardless of the time of year. I'll look a bit more into it when I get some time - I like the short solutions.
    I think it worked originally but I foolishly edited the formula to "improve" it and only broke it

    This is the working shorter version

    =IF(A1="","",IF(PRODUCT(A1-DATE(YEAR(A1),{4,11},1-WEEKDAY(DATE(YEAR(A1),{4,11},0)))-1/24)>0,1,2)/24+A1)

  7. #7
    Forum Contributor
    Join Date
    08-22-2005
    Location
    Denmark
    MS-Off Ver
    Excel 365
    Posts
    349
    Thanks very much again daddylonglegs for your time. As I said, I prefer short solutions, and this new version works.
    (now I just need to find out how :-) ... wonder what this {4,11} is...)

    I have a hurdle each time I seek advice in this forum as my Excel version is in my national language. The easisest way to translate the formulas I pick up is to write a line in VBA stating: ActiveCell.Formula = "=IF(A1=..." and then almost everything is translated.
    But the switch between commas and semicolon causes errors - in this case it writes =IF (A1=",",IF(PRODUCT...). It is, however, easily mended if you're aware of it.

  8. #8
    Registered User
    Join Date
    06-17-2010
    Location
    Canada
    MS-Off Ver
    Excel 2002
    Posts
    8

    Re: Daylight saving time

    How could that formula be modified to subtract 5 hours in the summer and subtract 4 hours in the winter from UTC?

  9. #9
    Forum Contributor
    Join Date
    08-22-2005
    Location
    Denmark
    MS-Off Ver
    Excel 365
    Posts
    349

    Re: Daylight saving time

    =if(a1="","",if(product(a1-date(year(a1),{4,11},1-weekday(date(year(a1),{4,11},0)))-1/24)>0,4,5)/24+a1)

    I didn't test it, but give it a try

    NSV

  10. #10
    Registered User
    Join Date
    08-17-2011
    Location
    Tampa, FL
    MS-Off Ver
    Excel 2007
    Posts
    1

    Question Re: Daylight saving time

    Quote Originally Posted by nsv View Post
    =if(a1="","",if(product(a1-date(year(a1),{4,11},1-weekday(date(year(a1),{4,11},0)))-1/24)>0,4,5)/24+a1)

    I didn't test it, but give it a try

    NSV
    How would this work if Daylight time:
    Starts: Second Sunday in March
    Ends: First Sunday in November
    Time: 2 am local time

  11. #11
    Registered User
    Join Date
    01-04-2012
    Location
    baton rouge, louisiana
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Daylight saving time

    what does {4,11} mean?
    how to express this in macro form?

  12. #12
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Daylight saving time

    Lesdupre,

    Welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread. It makes sense to have a new thread for your question because a thread with numerous replies can be off putting & difficult to pick out relevant replies.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  13. #13
    Registered User
    Join Date
    09-04-2016
    Location
    Chicago, USA
    MS-Off Ver
    2013
    Posts
    2

    Re: Daylight saving time

    Quote Originally Posted by daddylonglegs View Post
    edit: here's a possible alternative formula, a little shorter but perhaps less transparent....

    =IF(A1="","",IF(PRODUCT(A1-DATE(YEAR(A1),{4,11},1-WEEKDAY(DATE(YEAR(A1),{4,11},0)))-1/24),1,2)/24+A1)
    This is an old thread but has recently become relevant to my needs. I removed the check for a blank cell, and it works as expected for CST time zone (Mexico City: GMT-5 summer, GMT-6 winter).

    Please Login or Register  to view this content.
    I can't figure out what the PRODUCT function arguments are. There doesn't appear to be an argument separator involved.

    Please Login or Register  to view this content.
    Please Login or Register  to view this content.
    Did I make a mistake when amending the code? Thanks.

  14. #14
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,941

    Re: Daylight saving time

    mellaws,
    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    Ben Van Johnson

  15. #15
    Registered User
    Join Date
    09-04-2016
    Location
    Chicago, USA
    MS-Off Ver
    2013
    Posts
    2

    Re: Daylight saving time

    Quote Originally Posted by protonLeah View Post
    mellaws,
    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    Your rules certainly work against making this forum useful.

+ Reply to 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