<?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 Scripting: Dates with No Years (Sometimes) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34996#M606529</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a table that stores special dates (Christmas, Hannukah, Valentine's Day etc).&amp;nbsp; It has a numerical Month field, a Day field and a Year field, along with a description of what the special date is, which sounds simple enough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Except that when the development team designed it, they give the user two options:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;for those dates that change annually (Easter and Hannukah, for example) you enter values in all three fields to denote that in 2018 it falls on one date but in other years the dates can be totally different and you need the year to know exactly.&lt;/LI&gt;&lt;LI&gt;for those dates that never change (Christmas and Valentine's Day, for example) you enter values in the Day and the Month, but for the Year you simply enter a 0 to denote the perennial date.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am now trying to match up these dates to a table with a single date so that the client can choose, say, Easter and get all Easter Sundays, no matter the year.&amp;nbsp; That's the easy part because those dates will have three parts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how to join a table with a date with a year of 0, and a data table with date with an actual year, based on just the month and day?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be most appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 May 2018 18:43:09 GMT</pubDate>
    <dc:creator>raynac</dc:creator>
    <dc:date>2018-05-30T18:43:09Z</dc:date>
    <item>
      <title>Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34996#M606529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a table that stores special dates (Christmas, Hannukah, Valentine's Day etc).&amp;nbsp; It has a numerical Month field, a Day field and a Year field, along with a description of what the special date is, which sounds simple enough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Except that when the development team designed it, they give the user two options:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;for those dates that change annually (Easter and Hannukah, for example) you enter values in all three fields to denote that in 2018 it falls on one date but in other years the dates can be totally different and you need the year to know exactly.&lt;/LI&gt;&lt;LI&gt;for those dates that never change (Christmas and Valentine's Day, for example) you enter values in the Day and the Month, but for the Year you simply enter a 0 to denote the perennial date.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am now trying to match up these dates to a table with a single date so that the client can choose, say, Easter and get all Easter Sundays, no matter the year.&amp;nbsp; That's the easy part because those dates will have three parts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how to join a table with a date with a year of 0, and a data table with date with an actual year, based on just the month and day?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be most appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 18:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34996#M606529</guid>
      <dc:creator>raynac</dc:creator>
      <dc:date>2018-05-30T18:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34997#M606530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be somthing like below Where you get year 0, just use like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *, MakeDate(Year, Month, Day) AS PerennialDate;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Month,&lt;/P&gt;&lt;P&gt;Day&lt;/P&gt;&lt;P&gt;Year(Today()) AS Year&lt;/P&gt;&lt;P&gt;......;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 18:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34997#M606530</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-30T18:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34998#M606531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishwarath!&amp;nbsp; Thanks so much for your response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, the view has to account for date from last year and next year and any other years in the database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So Christmas Day has to load as (essentially multiple rows) for, say, 25-12-2010 and 25-12-2011 etc... right on up to the last date that exists in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wondered if a master calendar would help, but I still wasn't able to figure out how to get it to "create" the extra rows to match each year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 19:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34998#M606531</guid>
      <dc:creator>raynac</dc:creator>
      <dc:date>2018-05-30T19:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34999#M606532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An idea can be to resident load all the years in the app and then join with the rows that has 0 as year. Here is some script that maybee could be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpAllYearsInApp:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT tmpYEAR RESIDENT TableWithAllYears;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN (tmpAllYearsInApp)&lt;/P&gt;&lt;P&gt;LOAD &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MakeDate(tmpYEAR, Month, Day) AS PerennialDate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FROM TableToLoad&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WHERE Year = 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RENAME TABLE tmpAllYearsInApp to newTableName;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;First you will have a tmp-table with all the distinct years that exists in the app. Then you will read all the data with year =0 and with the join you will have multiple rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.e. you have the yeras 2017,2018,2019 in the app. Then you have 25 ,12 , 0&amp;nbsp; (christmas day). After the join you will have three rows, 25-12-2017 and &lt;SPAN style="font-size: 13.3333px;"&gt;25-12-2018 and &lt;SPAN style="font-size: 13.3333px;"&gt;25-12-2019.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 19:14:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/34999#M606532</guid>
      <dc:creator>peterbergman</dc:creator>
      <dc:date>2018-05-30T19:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35000#M606533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, sorry i quite did not follow you. Could you please elaborate a little with some sample data. Probably yes, you have to use Master Calendar for missing dates.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 19:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35000#M606533</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-30T19:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35001#M606534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try this script. I will also attach a qlikviewfile with the same script.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// First we have all the data about holidays. 0 = Same date every year&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Easter day is different from year to year&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Holidays:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Day, Month, Year, Description&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;25 , 12 , 0, Christmas day same date every year&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;21 , 4 , 2019, Easter day 2019&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1 , 4, 2018, Easter day 2018&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;16 , 4, 2017, Easter day 2017&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;14 , 2 , 0, Valentines day every year&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Load all the distinct years from the Holiday-table exept for year = 0&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;tmpHolidays:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD DISTINCT Year as tmpYear&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident Holidays&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where Year &amp;lt;&amp;gt; 0;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// JOIN this tmp-table with data from holidays but with the year = 0&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// The result will be three rows with christmas day and valentines day&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;JOIN (tmpHolidays)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Day, Month , Description&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident Holidays where Year=0;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;////Concatenate rows from the holidays table where year is not zero. Easter day&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concatenate (tmpHolidays)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Day, Month, Year as tmpYear, Description&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident Holidays&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where Year &amp;lt;&amp;gt; 0;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// Drop the inline table that we started with&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Drop table Holidays;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Holidays:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD MakeDate(tmpYear, Month, Day) as PerennialDate, Description, tmpYear as Year, Month, Day&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Resident tmpHolidays;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;// drop the tmpHolidaystable&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;drop table tmpHolidays;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 19:47:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35001#M606534</guid>
      <dc:creator>peterbergman</dc:creator>
      <dc:date>2018-05-30T19:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35002#M606535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter!&amp;nbsp; This looks amazing. Thank you so much for all the work you put in!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have one question.&amp;nbsp; The layout of the table in my actual software is exactly the same as the INLINE LOAD you posted:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203956_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So...can I just use that instead?&amp;nbsp; Was there a reason you chose that method, because my clients are worldwide and they will put their own special dates into the database.&amp;nbsp; So I cannot hard code them.&amp;nbsp; Or were you just showing me an example of how it could be done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 20:28:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35002#M606535</guid>
      <dc:creator>raynac</dc:creator>
      <dc:date>2018-05-30T20:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Scripting: Dates with No Years (Sometimes)</title>
      <link>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35003#M606536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Scratch my silly question above!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I went in and substituted my table for your inline load and it worked perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, I cannot thank you enough!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2018 20:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Scripting-Dates-with-No-Years-Sometimes/m-p/35003#M606536</guid>
      <dc:creator>raynac</dc:creator>
      <dc:date>2018-05-30T20:41:47Z</dc:date>
    </item>
  </channel>
</rss>

