<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to identify the days daylight saving time starts and ends in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632373#M47099</link>
    <description>&lt;P&gt;Thanks Martin for such quick reply!&lt;/P&gt;&lt;P&gt;Your proposal is both smart and simply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can't use LOAD * because data origin and process is more complex than I've showed before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2019 10:12:03 GMT</pubDate>
    <dc:creator>Gestion-PSD</dc:creator>
    <dc:date>2019-10-17T10:12:03Z</dc:date>
    <item>
      <title>How to identify the days daylight saving time starts and ends</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632342#M47095</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;We have a data origin (.xlsx) that&amp;nbsp;habitually contains 24 columns, one for each hour. But in the days when daylight saving time starts and ends (like 2019-10-27) this .xlsx has 23 or 25 columns, and the app data load fail.&lt;/P&gt;&lt;P&gt;Currently, we must watch out this days to change app script and return to standard script the next day.&lt;/P&gt;&lt;P&gt;We're looking for a way to not to be alert those days. We know we can control script execution with IF-THEN-ELSE statements, but we don't know how (if it's possible) we can identify if today is a 23 or 25-hours day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There's a function or simple code to know if today is a 23 or 25-hours day?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We're trying to do some as:&lt;/P&gt;&lt;P&gt;IF (today_is_23-hours_day) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; read and process a 23-hours_day .xlsx&lt;/P&gt;&lt;P&gt;ELSE IF (today_is_25-hours_day) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; read and process a 25-hours_day .xlsx&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; read and process a standard 24-hours_day .xlsx&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Luján Torres.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:56:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632342#M47095</guid>
      <dc:creator>Gestion-PSD</dc:creator>
      <dc:date>2024-11-16T19:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the days daylight saving time starts and ends</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632345#M47096</link>
      <description>&lt;P&gt;for 23 hours day:&lt;/P&gt;&lt;P&gt;if month(today())='Mar' and day(today()) &amp;gt;= 25 and weekday(today()) = 'Su.' then&lt;/P&gt;&lt;P&gt;load 23 columns&lt;/P&gt;&lt;P&gt;elseif&amp;nbsp;&lt;/P&gt;&lt;P&gt;if month(today())='Oct' and day(today()) &amp;gt;= 25 and weekday(today()) = 'Su.' then&lt;/P&gt;&lt;P&gt;load 25 columns&amp;nbsp;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;load 24 columns&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;(edit your results on your regional settings)&lt;/P&gt;&lt;P&gt;Another possibility:&lt;/P&gt;&lt;P&gt;if the data makes it possible load *. This also works with crosstable&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 07:54:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632345#M47096</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2019-10-08T07:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the days daylight saving time starts and ends</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632373#M47099</link>
      <description>&lt;P&gt;Thanks Martin for such quick reply!&lt;/P&gt;&lt;P&gt;Your proposal is both smart and simply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can't use LOAD * because data origin and process is more complex than I've showed before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2019 10:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-identify-the-days-daylight-saving-time-starts-and-ends/m-p/1632373#M47099</guid>
      <dc:creator>Gestion-PSD</dc:creator>
      <dc:date>2019-10-17T10:12:03Z</dc:date>
    </item>
  </channel>
</rss>

