<?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. :Cells merge problem with Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153306#M30391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it seems your script have several issues.&lt;/P&gt;&lt;P&gt;To calculate an interval between two dates or timestamp, you have to use the timestamp() function.&lt;/P&gt;&lt;P&gt;But there was an issue due to a comma juste before.&lt;/P&gt;&lt;P&gt;Try this script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;StartDate:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; 'Qualification DSI' as status,&lt;BR /&gt; SubmissionDate as changedate_start&lt;BR /&gt;RESIDENT Artefacts&lt;BR /&gt;WHERE NOT IsNull(SubmissionDate) ;&lt;BR /&gt;&lt;BR /&gt;// identification de la date de cloture de l'artefact.&lt;BR /&gt;ClosedDate:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; 'Demande Fermée' as status,&lt;BR /&gt; ClosedDate as changedate_end&lt;BR /&gt;RESIDENT Artefacts&lt;BR /&gt;WHERE NOT IsNull(ClosedDate) ;&lt;BR /&gt;//main 2&lt;BR /&gt;&lt;BR /&gt;HS_1:&lt;BR /&gt;LOAD&lt;BR /&gt; id as [Artifact ID],&lt;BR /&gt; old_value as ov,&lt;BR /&gt; new_value as status,&lt;BR /&gt; timestamp(change_date) as changedate_start&lt;BR /&gt;FROM &lt;D&gt;&lt;BR /&gt;(biff, embedded labels, table is Feuille1$)&lt;BR /&gt;WHERE (field = 'status');&lt;BR /&gt;&lt;BR /&gt;HS_2:&lt;BR /&gt;LOAD&lt;BR /&gt; id as [Artifact ID],&lt;BR /&gt; old_value as status,&lt;BR /&gt; new_value as nv,&lt;BR /&gt; timestamp(change_date) as changedate_end&lt;BR /&gt;FROM&lt;BR /&gt;&lt;D&gt;&lt;BR /&gt;(biff, embedded labels, table is Feuille1$)&lt;BR /&gt;WHERE (field = 'status');&lt;BR /&gt;&lt;BR /&gt;OUTER JOIN (HS_1)&lt;BR /&gt;LOAD * RESIDENT HS_2;&lt;BR /&gt;&lt;BR /&gt;HS_f:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; status,&lt;BR /&gt; changedate_start,&lt;BR /&gt; changedate_end,&lt;BR /&gt;// ,&lt;BR /&gt; Interval(changedate_end-changedate_start) as duration&lt;BR /&gt;RESIDENT HS_1;&lt;BR /&gt;&lt;BR /&gt;drop table HS_1;&lt;BR /&gt;drop table HS_2;&lt;/D&gt;&lt;/D&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Aug 2010 15:29:26 GMT</pubDate>
    <dc:creator>martin59</dc:creator>
    <dc:date>2010-08-09T15:29:26Z</dc:date>
    <item>
      <title>Cells merge problem with Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153305#M30390</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 have an excel table that looks like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 425pt; border-collapse: collapse;" width="565"&gt;&lt;COLGROUP&gt;&lt;COL style="width: 60pt;" width="80" /&gt;&lt;COL style="width: 85pt; mso-width-source: userset; mso-width-alt: 4132;" width="113" /&gt;&lt;COL style="width: 84pt; mso-width-source: userset; mso-width-alt: 4096;" width="112" /&gt;&lt;COL span="2" style="width: 98pt; mso-width-source: userset; mso-width-alt: 4754;" width="130" /&gt;&lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="width: 60pt; height: 12.75pt; background-color: transparent; border: #d4d0c8;" width="80"&gt;id&lt;/TD&gt;&lt;TD style="width: 85pt; background-color: transparent; border: #d4d0c8;" width="113"&gt;statut&lt;/TD&gt;&lt;TD style="width: 84pt; background-color: transparent; border: #d4d0c8;" width="112"&gt;date_start&lt;/TD&gt;&lt;TD style="width: 98pt; background-color: transparent; border: #d4d0c8;" width="130"&gt;date_end&lt;/TD&gt;&lt;TD style="width: 98pt; background-color: transparent; border: #d4d0c8;" width="130"&gt;duree&lt;/TD&gt;&lt;/TR&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt; background-color: transparent; border: #d4d0c8;"&gt;id1&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;demande ouverte&lt;/TD&gt;&lt;TD align="right" class="xl24" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent" num="40299.418055555558"&gt;01/05/2010 10:02&lt;/TD&gt;&lt;TD class="xl24" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt; background-color: transparent; border: #d4d0c8;"&gt;id1&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;demande ouverte&lt;/TD&gt;&lt;TD class="xl24" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl24" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent" num="40331.467361111114"&gt;02/06/2010 11:13&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt; background-color: transparent; border: #d4d0c8;"&gt;id2&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;qualif&lt;/TD&gt;&lt;TD align="right" class="xl25" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent" num="40300.425000000003"&gt;02/05/2010&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt; background-color: transparent; border: #d4d0c8;"&gt;id2&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;qualif&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl24" style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent" num="40301.517361111109"&gt;03/05/2010 12:25&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR height="17" style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt; background-color: transparent; border: #d4d0c8;"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;TD style="BORDER-RIGHT: #d4d0c8; BORDER-TOP: #d4d0c8; BORDER-LEFT: #d4d0c8; BORDER-BOTTOM: #d4d0c8; BACKGROUND-COLOR: transparent"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;and I want to merge cells to obtain duree (duree= date_end-date_start)&lt;/P&gt;&lt;P&gt;We have 2 rainures with code&lt;/P&gt;&lt;P&gt;main 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;StartDate:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;[Artifact ID]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;'Qualification DSI'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; status &lt;P&gt;,&lt;/P&gt;&lt;P&gt;SubmissionDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; &lt;P&gt;changedate_start&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Artefacts&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;WHERE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;NOT&lt;/B&gt; IsNull(SubmissionDate) &lt;P&gt;;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;// identification de la date de cloture de l'artefact.&lt;/P&gt;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;ClosedDate:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;[Artifact ID]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;'Demande Fermée'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; status &lt;P&gt;,&lt;/P&gt;&lt;P&gt;ClosedDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;as&lt;/B&gt; &lt;P&gt;changedate_end&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Artefacts&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;WHERE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;NOT&lt;/B&gt; IsNull(ClosedDate) &lt;P&gt;main 2&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P style="font-style: italic"&gt;HS_1:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;id &lt;B&gt;as&lt;/B&gt; [Artifact ID], &lt;P&gt;old_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;as&lt;/B&gt; ov,&lt;/P&gt;&lt;P&gt;new_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;as&lt;/B&gt; status,&lt;/P&gt;&lt;P&gt;timestamp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(change_date) &lt;B&gt;as&lt;/B&gt; changedate_start&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;biff, embedded labels, table is Feuille1$)&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;WHERE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;(field = 'status');&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;HS_2:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;id &lt;B&gt;as&lt;/B&gt; [Artifact ID], &lt;P&gt;old_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;as&lt;/B&gt; status,&lt;/P&gt;&lt;P&gt;new_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;as&lt;/B&gt; nv,&lt;/P&gt;&lt;P&gt;timestamp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(change_date) &lt;B&gt;as&lt;/B&gt; changedate_end&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;biff, embedded labels, table is Feuille1$)&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;WHERE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;(field = 'status');&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;OUTER&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;JOIN&lt;/B&gt; (&lt;I&gt;HS_1&lt;/I&gt;)&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;* &lt;B&gt;RESIDENT&lt;/B&gt; HS_2;&lt;I&gt;&lt;/I&gt;&lt;P style="font-style: italic"&gt;HS_f:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Artifact ID]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;changedate_start&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;changedate_end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(changedate_end-changedate_start) &lt;B&gt;as&lt;/B&gt; duration&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;RESIDENT&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;HS_1;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;drop&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;table&lt;/B&gt; &lt;P style="font-style: italic"&gt;HS_1;&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;drop&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;table&lt;/B&gt; &lt;P&gt;&lt;I&gt;HS_2;&lt;/I&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Yours faithfully&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Aug 2010 13:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153305#M30390</guid>
      <dc:creator />
      <dc:date>2010-08-09T13:03:56Z</dc:date>
    </item>
    <item>
      <title>Re. :Cells merge problem with Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153306#M30391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it seems your script have several issues.&lt;/P&gt;&lt;P&gt;To calculate an interval between two dates or timestamp, you have to use the timestamp() function.&lt;/P&gt;&lt;P&gt;But there was an issue due to a comma juste before.&lt;/P&gt;&lt;P&gt;Try this script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;StartDate:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; 'Qualification DSI' as status,&lt;BR /&gt; SubmissionDate as changedate_start&lt;BR /&gt;RESIDENT Artefacts&lt;BR /&gt;WHERE NOT IsNull(SubmissionDate) ;&lt;BR /&gt;&lt;BR /&gt;// identification de la date de cloture de l'artefact.&lt;BR /&gt;ClosedDate:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; 'Demande Fermée' as status,&lt;BR /&gt; ClosedDate as changedate_end&lt;BR /&gt;RESIDENT Artefacts&lt;BR /&gt;WHERE NOT IsNull(ClosedDate) ;&lt;BR /&gt;//main 2&lt;BR /&gt;&lt;BR /&gt;HS_1:&lt;BR /&gt;LOAD&lt;BR /&gt; id as [Artifact ID],&lt;BR /&gt; old_value as ov,&lt;BR /&gt; new_value as status,&lt;BR /&gt; timestamp(change_date) as changedate_start&lt;BR /&gt;FROM &lt;D&gt;&lt;BR /&gt;(biff, embedded labels, table is Feuille1$)&lt;BR /&gt;WHERE (field = 'status');&lt;BR /&gt;&lt;BR /&gt;HS_2:&lt;BR /&gt;LOAD&lt;BR /&gt; id as [Artifact ID],&lt;BR /&gt; old_value as status,&lt;BR /&gt; new_value as nv,&lt;BR /&gt; timestamp(change_date) as changedate_end&lt;BR /&gt;FROM&lt;BR /&gt;&lt;D&gt;&lt;BR /&gt;(biff, embedded labels, table is Feuille1$)&lt;BR /&gt;WHERE (field = 'status');&lt;BR /&gt;&lt;BR /&gt;OUTER JOIN (HS_1)&lt;BR /&gt;LOAD * RESIDENT HS_2;&lt;BR /&gt;&lt;BR /&gt;HS_f:&lt;BR /&gt;LOAD&lt;BR /&gt; [Artifact ID],&lt;BR /&gt; status,&lt;BR /&gt; changedate_start,&lt;BR /&gt; changedate_end,&lt;BR /&gt;// ,&lt;BR /&gt; Interval(changedate_end-changedate_start) as duration&lt;BR /&gt;RESIDENT HS_1;&lt;BR /&gt;&lt;BR /&gt;drop table HS_1;&lt;BR /&gt;drop table HS_2;&lt;/D&gt;&lt;/D&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Aug 2010 15:29:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153306#M30391</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-08-09T15:29:26Z</dc:date>
    </item>
    <item>
      <title>Re. :Cells merge problem with Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153307#M30392</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 for your answer but I have always the same problem because I can't merge cells&lt;/P&gt;&lt;P&gt;In fact, I have several cells which have the same id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width:436pt;border-collapse:collapse;" width="580"&gt;&lt;COLGROUP&gt;&lt;COL style="width:60pt;" width="80" /&gt;&lt;COL style="width:85pt;mso-width-source:userset;mso-width-alt:4132;" width="113" /&gt;&lt;COL style="width:95pt;mso-width-source:userset;mso-width-alt:4644;" width="127" /&gt;&lt;COL span="2" style="width:98pt;mso-width-source:userset;mso-width-alt:4754;" width="130" /&gt;&lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="width:60pt;height:12.75pt;background-color:transparent;border:#d4d0c8;" width="80"&gt;id&lt;/TD&gt;&lt;TD style="width:85pt;background-color:transparent;border:#d4d0c8;" width="113"&gt;statut&lt;/TD&gt;&lt;TD style="width:95pt;background-color:transparent;border:#d4d0c8;" width="127"&gt;date_start&lt;/TD&gt;&lt;TD style="width:98pt;background-color:transparent;border:#d4d0c8;" width="130"&gt;date_end&lt;/TD&gt;&lt;TD style="width:98pt;background-color:transparent;border:#d4d0c8;" width="130"&gt;duree&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;id1&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;demande ouverte&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;01/05/2010 10:02&lt;/TD&gt;&lt;TD class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;id1&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;demande ouverte&lt;/TD&gt;&lt;TD class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;02/06/2010 11:13&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;dsi&lt;/TD&gt;&lt;TD class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;03/05/2010 14:12&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;id1&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;qualification&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;02/05/2010 13:20&lt;/TD&gt;&lt;TD class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;id2&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;qualif&lt;/TD&gt;&lt;TD align="right" class="xl25" style="background-color:transparent;border:#d4d0c8;"&gt;02/05/2010&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD height="17" style="height:12.75pt;background-color:transparent;border:#d4d0c8;"&gt;id2&lt;/TD&gt;&lt;TD style="background-color:transparent;border:#d4d0c8;"&gt;qualif&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;01/05/2010 12:00&lt;/TD&gt;&lt;TD align="right" class="xl24" style="background-color:transparent;border:#d4d0c8;"&gt;03/05/2010 12:25&lt;/TD&gt;&lt;TD align="right" style="background-color:transparent;border:#d4d0c8;"&gt;25&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I think I must merge cells then I use interval function??&lt;/P&gt;&lt;P&gt;Yours faithfully&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Aug 2010 09:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153307#M30392</guid>
      <dc:creator />
      <dc:date>2010-08-10T09:19:02Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Cells merge problem with Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153308#M30393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Could you send to me a part of your application for testing ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 09:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cells-merge-problem-with-Excel/m-p/153308#M30393</guid>
      <dc:creator>martin59</dc:creator>
      <dc:date>2010-08-12T09:14:37Z</dc:date>
    </item>
  </channel>
</rss>

