<?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: Merging Fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749533#M1023533</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've come to the conclusion that the only way to do this would be as per &lt;A href="https://community.qlik.com/qlik-users/96544"&gt;gwassenaar&lt;/A&gt; suggestion using a cross table load, however you may need to rename field to stop it interfering from you other data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Mar 2015 14:03:33 GMT</pubDate>
    <dc:creator>awhitfield</dc:creator>
    <dc:date>2015-03-20T14:03:33Z</dc:date>
    <item>
      <title>Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749518#M1023518</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 a spreadsheet that I have brought into QlikView. It is part of a larger report but it is not affected by the other elements in that report. I want to be able to merge the 3 fields User1, User2 and User 3 to give me a list of users but I also want to be able to give a count of how many times that user has occurred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My intention is to show this information in a table of some sort such as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="149" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 240px; height: 135.31px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;User&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Pick Errors&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Ryan&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Danny&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Brett&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Jacob&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Ian&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 09:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749518#M1023518</guid>
      <dc:creator />
      <dc:date>2015-03-19T09:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749519#M1023519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps you can use the CrossTable function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PickErrors:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CrossTable(Dummy, Name,10)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD Date as PickErrorDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(Date) as PEYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(Date) as PEMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Week(Date) as PEWeek,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Order No] as OrderNo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Ref No] as RefNo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Qty,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Up/Down],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User3&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;Y&gt;&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Field Dummy;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 10:00:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749519#M1023519</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-19T10:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749520#M1023520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's great thanks, works a treat. Could you explain what that does as I don't understand how that has linked the 3 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 10:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749520#M1023520</guid>
      <dc:creator />
      <dc:date>2015-03-19T10:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749521#M1023521</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;you can try this script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PickErrors:&lt;/P&gt;&lt;P&gt;LOAD Date as PickErrorDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(Date) as PEYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(Date) as PEMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Week(Date) as PEWeek, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Order No] as OrderNo, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Ref No] as RefNo, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Qty, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Up/Down], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(User1 &amp;amp;'|'&amp;amp; User2 &amp;amp;'|'&amp;amp; User3) as&amp;nbsp; User&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User1,&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User2,&lt;/P&gt;&lt;P&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;Y&gt;&lt;/Y&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 10:20:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749521#M1023521</guid>
      <dc:creator />
      <dc:date>2015-03-19T10:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749522#M1023522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this blog post: &lt;A _jive_internal="true" class="font-color-normal" href="https://community.qlik.com/blogs/qlikviewdesignblog/2014/03/24/crosstable" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3d3d3d;"&gt;The Crosstable Load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 10:32:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749522#M1023522</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-19T10:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749523#M1023523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert, I think this will need a couple of reads before I fully understand it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 10:41:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749523#M1023523</guid>
      <dc:creator />
      <dc:date>2015-03-19T10:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749524#M1023524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishnama&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has actually worked better as it has not messed up the figures. Ideally I would want an individual list of the users to count up the amount of times they have made an error. Using Gysbert's solution corrupted this information. I have attached the qvw that is the complete report. The items in question have the orange borders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="pickerrors.JPG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/81277_pickerrors.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Because the users doing the picking work in teams and not always the same team I want to be able to identify which users are the repeat offenders. When I tried Gysbert's solution this corrupted the information in the text boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Steve.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 12:52:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749524#M1023524</guid>
      <dc:creator />
      <dc:date>2015-03-19T12:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749525#M1023525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This did work to an extent but then on closer inspection it has changed all the figures in my text boxes.&lt;/P&gt;&lt;P&gt;Because all the users work in teams and not always the same team I need to identify the repeat offenders who are making the pick errors.&lt;/P&gt;&lt;P&gt;Your solution gave me that but it corrupted the figures in the text boxes.&lt;/P&gt;&lt;P&gt;I have attached the full report on a reply to Krishnama.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 12:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749525#M1023525</guid>
      <dc:creator />
      <dc:date>2015-03-19T12:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749526#M1023526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PickErrors:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Date as PickErrorDate,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Year(Date) as PEYear,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Month(Date) as PEMonth,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Week(Date) as PEWeek,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Order No] as OrderNo,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Ref No] as RefNo,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Description,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Qty,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Up/Down],&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(User1 &amp;amp;'|'&amp;amp; User2 &amp;amp;'|'&amp;amp; User3) as&amp;nbsp; User&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as&amp;nbsp; User,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User2,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; User3&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;Y&gt;&lt;/Y&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; User2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as&amp;nbsp; User&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;PickErrors&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; User3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as&amp;nbsp; User&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Resident &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;PickErrors&lt;/SPAN&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 14:25:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749526#M1023526</guid>
      <dc:creator />
      <dc:date>2015-03-19T14:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749527#M1023527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishnama&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get this error when I reload. It is the same for User3 as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error.JPG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/81292_error.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 14:34:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749527#M1023527</guid>
      <dc:creator />
      <dc:date>2015-03-19T14:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749528#M1023528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Daft question, have you got an Employees table? I can't open the QVW to see!&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:01:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749528#M1023528</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-19T15:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749529#M1023529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nope, I did wonder that, but then some of the things that you guys do in Qlikview has me baffled so I didn't question it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749529#M1023529</guid>
      <dc:creator />
      <dc:date>2015-03-19T15:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749530#M1023530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha ha, guess that explains the error then &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749530#M1023530</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-19T15:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749531#M1023531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve, can you post the xls from the original Merger Test.qvw?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:22:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749531#M1023531</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-19T15:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749532#M1023532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spreadsheet attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:24:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749532#M1023532</guid>
      <dc:creator />
      <dc:date>2015-03-19T15:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749533#M1023533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've come to the conclusion that the only way to do this would be as per &lt;A href="https://community.qlik.com/qlik-users/96544"&gt;gwassenaar&lt;/A&gt; suggestion using a cross table load, however you may need to rename field to stop it interfering from you other data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 14:03:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749533#M1023533</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-20T14:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merging Fields</title>
      <link>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749534#M1023534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Andy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have stopped it dropping a couple of the fields and done a distinct count on those and I am getting the numbers I am expecting.&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 14:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merging-Fields/m-p/749534#M1023534</guid>
      <dc:creator />
      <dc:date>2015-03-20T14:34:40Z</dc:date>
    </item>
  </channel>
</rss>

