<?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: Adding up dates as a number in the data load editor in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879242#M12192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;awesome ta xxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;worked a treat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards &lt;/P&gt;&lt;P&gt;Joeybird&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2015 09:09:36 GMT</pubDate>
    <dc:creator>joeybird</dc:creator>
    <dc:date>2015-05-06T09:09:36Z</dc:date>
    <item>
      <title>Adding up dates as a number in the data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879238#M12188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like the following in my data load statement...dates to add up to a total number of days ...the in the "total number of days" new column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if(DateOrderCompleted) - (DateOrderReceived) as [TotalNumberOfDays],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant seem to crack it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;joeybird&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 14:00:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879238#M12188</guid>
      <dc:creator>joeybird</dc:creator>
      <dc:date>2015-05-05T14:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding up dates as a number in the data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879239#M12189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove "if":&lt;/P&gt;&lt;P&gt;sum(DateOrderCompleted - DateOrderReceived) as [TotalNumberOfDays],&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 14:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879239#M12189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-05T14:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Adding up dates as a number in the data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879240#M12190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Interval(DateOrderCompleted - &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateOrderReceived,'DD') as TotalNumberOfDays&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 14:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879240#M12190</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-05-05T14:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Adding up dates as a number in the data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879241#M12191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joanna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why not simply:&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;Date((DateOrderCompleted)) - Date((DateOrderReceived)) as TotalNumberOfDays&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;Lemme know.&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;Regards,&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;N&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 May 2015 22:57:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879241#M12191</guid>
      <dc:creator>nico_ilog</dc:creator>
      <dc:date>2015-05-05T22:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Adding up dates as a number in the data load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879242#M12192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;awesome ta xxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;worked a treat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards &lt;/P&gt;&lt;P&gt;Joeybird&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2015 09:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Adding-up-dates-as-a-number-in-the-data-load-editor/m-p/879242#M12192</guid>
      <dc:creator>joeybird</dc:creator>
      <dc:date>2015-05-06T09:09:36Z</dc:date>
    </item>
  </channel>
</rss>

