<?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: Calculate Days For Service calls in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248106#M461578</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAven't much time BUT this might work somehow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about loading the second file and converting all to dates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do an if statement in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (CalendarDate = Workingday, 'YES','NO') as workingDay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the SOMETHING LIKE&lt;/P&gt;&lt;P&gt;sum ({&amp;lt;workingDay = {YES}&amp;gt;} CLOSEDATE - DOCDATE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB Only CLOSEDATE is in text format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit you would even need to do the if statement. Just join the working day file to the DOCDATE&amp;nbsp; input &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ill leave you to it to see if it works or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Dec 2016 10:30:28 GMT</pubDate>
    <dc:creator>robert99</dc:creator>
    <dc:date>2016-12-29T10:30:28Z</dc:date>
    <item>
      <title>Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248102#M461574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;i need help with this issue&lt;/P&gt;&lt;P&gt;I have a request to calculate working&amp;nbsp; days for each service call &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From open date of&amp;nbsp; service call&amp;nbsp; DOCDATE&lt;/P&gt;&lt;P&gt;To closed&amp;nbsp; date of service call CLOSEDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to calculate for each call how many working days&amp;nbsp; are from open to close&amp;nbsp; .&lt;/P&gt;&lt;P&gt;enclosed 2 files&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;first if list of service calls with dates&lt;/P&gt;&lt;P&gt;second&amp;nbsp; list of dates , and a filed Workday&amp;nbsp; only the ones marked with 1 are working days&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp; &lt;/P&gt;&lt;P&gt;and happy new year&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 09:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248102#M461574</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2016-12-29T09:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248103#M461575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gidon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue you seem to have is these date seem to be in a text format not a numeric date format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you need to use DATE#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date#(DOCDATE, 'DD/MM/YY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then once these date's are converted into numeric dates subtract one from the other&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use Navigation &amp;gt;&amp;gt;&amp;gt;&amp;nbsp; Data Manager and this will automatically create the appropriate script as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Sheet1$]:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [DOCNO],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([DOCDATE], 'DD/MM/YYYY') ,'DD/MM/YYYY') AS [DOCDATE],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([CLOSEDATE], 'DD/MM/YYYY') ,'DD/MM/YYYY') AS [CLOSEDATE]&lt;/P&gt;&lt;P&gt; FROM [lib://Downloads/Copy of ServiceCalls.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use &lt;IMG alt="Dates.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/147891_Dates.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 09:28:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248103#M461575</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2016-12-29T09:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248104#M461576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Robert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your fast response&amp;nbsp; &lt;/P&gt;&lt;P&gt;that is correct , but i need to count only the dates that are working&amp;nbsp; days&lt;/P&gt;&lt;P&gt;in the second file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea ?&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 09:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248104#M461576</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2016-12-29T09:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248105#M461577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't done it as you want to do it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I did once excluding public holidays and Sat and sun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used networkdays and the public holidays loaded as a set statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im sure there will be a Function that only excludes days loaded from Excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vHolDates =&lt;/P&gt;&lt;P&gt;'02/01/2012','06/04/2012','09/04/2012','07/05/2012','04/06/2012','05/06/2012','27/08/2012','25/12/2012','26/12/2012'&lt;/P&gt;&lt;P&gt;,'01/01/2013','29/03/2013','01/04/2013','06/05/2013','27/05/2013','26/08/2013','25/12/2013','26/12/2013'&lt;/P&gt;&lt;P&gt;,'01/01/2014','18/04/2014', '21/04/2014', '05/05/2014','26/05/2014','25/08/2014','25/12/2014','26/12/2014'&lt;/P&gt;&lt;P&gt;,'01/01/2015','03/04/2015', '06/04/2015', '04/05/2015','25/05/2015','31/08/2015','25/12/2015','28/12/2015'&lt;/P&gt;&lt;P&gt;,'01/01/2016','25/03/2016', '28/03/2016', '02/05/2016','30/05/2016','29/08/2016', '26/12/2016','27/12/2016'&lt;/P&gt;&lt;P&gt;,'02/01/2017','14/04/2017', '17/04/2017', '01/05/2017','29/05/2017','28/08/2017', '25/12/2017','26/12/2017'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 10:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248105#M461577</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2016-12-29T10:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248106#M461578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAven't much time BUT this might work somehow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about loading the second file and converting all to dates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then do an if statement in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (CalendarDate = Workingday, 'YES','NO') as workingDay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the SOMETHING LIKE&lt;/P&gt;&lt;P&gt;sum ({&amp;lt;workingDay = {YES}&amp;gt;} CLOSEDATE - DOCDATE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB Only CLOSEDATE is in text format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit you would even need to do the if statement. Just join the working day file to the DOCDATE&amp;nbsp; input &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ill leave you to it to see if it works or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 10:30:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248106#M461578</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2016-12-29T10:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248107#M461579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try This&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD date(DOCDATE,'DD/MM/YYYY') as DOCDATE1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; workday&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt; (biff, embedded labels, table is Sheet1$);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;LOAD DOCNO,&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt;"&gt;date(DOCDATE,'DD/MM/YYYY') as DOCDATE, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;date(date#(CLOSEDATE,'DD/MM/YYYY'),'DD/MM/YYYY') as CLOSEDATE&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt; (biff, embedded labels, table is Sheet1$);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join(B)&lt;/P&gt;&lt;P&gt;IntervalMatch(DOCDATE1)&lt;/P&gt;&lt;P&gt;C:&lt;/P&gt;&lt;P&gt;LOAD DOCDATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOSEDATE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident B;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join(B)&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Resident A;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;drop table A;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;exit SCRIPT;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;after take &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;dim:-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;1)DOCNO&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;2)DOCDATE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;3)CLOSE&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;CDATE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;exp:-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;sum(workday)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 10:48:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248107#M461579</guid>
      <dc:creator>pathiqvd</dc:creator>
      <dc:date>2016-12-29T10:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248108#M461580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI&lt;/P&gt;&lt;P&gt;Thank you very much&lt;/P&gt;&lt;P&gt;it works&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 11:25:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248108#M461580</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2016-12-29T11:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248109#M461581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After checking this to see if another way could eb used rather than interval match (or a non script option)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Networkdays only applies where 2 days are consistently without exception non work days every week. There is no QLIK formula that excludes Saturday and Sunday and instead only loads holidays. So this example has to be done in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The default is Saturday and Sunday but these can be say Sun and Monday (by adding or subtracting from the dates&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp; Networkdays (DOCDATE + 1, CLOSEDATE +1) &amp;gt;&amp;gt;&amp;gt;&amp;gt; Sunday and Monday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also to load other holiday dates from say and excel spreadsheet (rather than how I have done above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp_Hols: // too load all &lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DOCDATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; workday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(workday = '1',DOCDATE,null()) as Holiday &lt;/P&gt;&lt;P&gt;FROM [lib://Downloads/Copy of WorkDay.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let vHols = '';&lt;/P&gt;&lt;P&gt;for iHol = 0 to NoOfRows('Temp_Hols') -1&lt;/P&gt;&lt;P&gt;let vHols = vHols &amp;amp; if(iHol &amp;gt; 0, ',', '') &amp;amp; chr(39) &amp;amp; Date(peek('Holiday', iHol, 'Temp_Hols')) &amp;amp; chr(39);&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 07:33:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248109#M461581</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2016-12-30T07:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248110#M461582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been doing a bit of work to update my knowledge on this subject&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A way to do this without using IntervalMatch (that I try to avoid if possible). Both give the same values for sum(workday) except for a different Total&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks to an excellent post by Henric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2940"&gt;Creating Reference Dates for Intervals&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B:&lt;/P&gt;&lt;P&gt;LOAD DOCNO,&lt;/P&gt;&lt;P&gt;date(DOCDATE,'DD/MM/YYYY') as DOCDATE,&lt;/P&gt;&lt;P&gt;date(date#(CLOSEDATE,'DD/MM/YYYY'),'DD/MM/YYYY') as CLOSEDATE&lt;/P&gt;&lt;P&gt;FROM [lib://Downloads/Copy of ServiceCalls.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LinkTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;DOCNO,&lt;/P&gt;&lt;P&gt;Date( DOCDATE + IterNo() - 1 ) as DOCDATE1&lt;/P&gt;&lt;P&gt;Resident B&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= CLOSEDATE - DOCDATE + 1 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;date(DOCDATE,'DD/MM/YYYY') as DOCDATE1,&lt;/P&gt;&lt;P&gt;workday&lt;/P&gt;&lt;P&gt;//FROM &lt;C&gt; (biff, embedded labels, table is Sheet1$) ;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;FROM [lib://Downloads/Copy of WorkDay.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="147982" alt="LinkTable.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/147982_LinkTable.JPG" style="height: 252px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;dimension:-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;DOCNO&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;expression:-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;sum(workday)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 08:32:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248110#M461582</guid>
      <dc:creator>robert99</dc:creator>
      <dc:date>2016-12-30T08:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Days For Service calls</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248111#M461583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;thanks you very much&lt;/P&gt;&lt;P&gt;I got an answer&lt;/P&gt;&lt;P&gt;happy new year&lt;/P&gt;&lt;P&gt;gidon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 09:06:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-Days-For-Service-calls/m-p/1248111#M461583</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2016-12-30T09:06:53Z</dc:date>
    </item>
  </channel>
</rss>

